An ebook/comic library service and web client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
228 B

  1. #!/usr/bin/env bash
  2. set -e
  3. set -x
  4. pylint atheneum
  5. mypy atheneum tests
  6. PYTHONPATH=$(pwd) coverage run --source atheneum -m pytest
  7. coverage report --fail-under=85 -m --skip-covered
  8. pycodestyle atheneum tests
  9. pydocstyle atheneum