summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run_all_tests.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/run_all_tests.sh b/tests/run_all_tests.sh
index b17a34a..b391a61 100755
--- a/tests/run_all_tests.sh
+++ b/tests/run_all_tests.sh
@@ -5,9 +5,11 @@ set -e
nosetests3 --version > /dev/null
nosetests3 -v --logging-level INFO --with-coverage --cover-erase
-python-coverage --version > /dev/null
-python-coverage html 2> /dev/null
+#python-coverage --version > /dev/null
+#python-coverage html --omit="*/test*" -d tests/coverage2_html_report 2> /dev/null
-coverage3 --version > /dev/null
-coverage3 html 2> /dev/null
+python3-coverage --version > /dev/null
+python3-coverage html --omit="*/test*" -d tests/coverage3_html_report 2> /dev/null
+echo ""
+echo "To see coverage results open tests/coverage3_html_report/index.html"