A multipurpose python flask API server and administration SPA
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
218 B

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