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.

23 lines
413 B

  1. #!/usr/bin/env bash
  2. set -e
  3. set -x
  4. python3 --version
  5. python3 -m pip --version
  6. python3 -m pipenv --version
  7. pylint --version
  8. mypy --version
  9. coverage --version
  10. pytest --version
  11. pycodestyle --version
  12. pydocstyle --version
  13. pylint atheneum
  14. mypy atheneum tests
  15. PYTHONPATH=$(pwd) coverage run --source atheneum -m pytest
  16. coverage report --fail-under=85 -m --skip-covered
  17. pycodestyle atheneum tests
  18. pydocstyle atheneum