diff --git a/bin/coverage.sh b/bin/coverage.sh index f26ec2b..b1ddb63 100755 --- a/bin/coverage.sh +++ b/bin/coverage.sh @@ -1,2 +1,5 @@ #!/usr/bin/env bash +set -x +set -e + pytest --cov=. --cov-report=html \ No newline at end of file diff --git a/bin/test.sh b/bin/test.sh index e23c9b8..d019117 100755 --- a/bin/test.sh +++ b/bin/test.sh @@ -1,4 +1,6 @@ #!/usr/bin/env bash +set -x +set -e # Check formatting and linting flake8 --max-line-length 120 $(git ls-files '*.py')