From bbe19a6798bcca768d95e48743dad5d81c6826f5 Mon Sep 17 00:00:00 2001 From: Joris van Rantwijk Date: Sat, 6 Jul 2024 20:22:18 +0200 Subject: [PATCH] Run all unittests in run_checks.sh --- run_checks.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/run_checks.sh b/run_checks.sh index 24a0fed..6dcf7f2 100755 --- a/run_checks.sh +++ b/run_checks.sh @@ -18,9 +18,14 @@ echo echo "Running test_mwmatching.py" python3 python/test_mwmatching.py +echo +echo "Running test_datastruct.py" +python3 python/test_datastruct.py + echo echo "Checking test coverage" coverage erase -coverage run --branch python/test_mwmatching.py +coverage run --branch python/test_datastruct.py +coverage run -a --branch python/test_mwmatching.py coverage report -m