diff --git a/.gitignore b/.gitignore index dc24ab3..3e984c8 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ __pycache__ environment/* config.yaml main.ipynb +.coverage diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index c10c66b..46b7f9d 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -python3 -m coverage run --omit=tests/* -m pytest tests +python3 -m coverage run --omit=tests/* -m pytest . && echo "Tests Passed" || exit 1 python3 -m coverage lcov -i -o coverage/lcov.info \ No newline at end of file