diff --git a/.gitignore b/.gitignore index 8a9af146..3af5a479 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ GithubCredentials.py .coverage /dist /MANIFEST +/test/htmlcov/ diff --git a/run_tests.sh b/run_tests.sh index 2ce1b72e..4bbc7a13 100644 --- a/run_tests.sh +++ b/run_tests.sh @@ -5,10 +5,12 @@ rm -f $(find . -name "*.pyc") cd test coverage erase -coverage run IntegrationTest.py +coverage run --branch IntegrationTest.py echo "==============" echo "|| Coverage ||" echo "==============" coverage report -m --include=../src/* + +coverage html --include=../src/*