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