1
0
Fork 0

Run all unittests in run_checks.sh

This commit is contained in:
Joris van Rantwijk 2024-07-06 20:22:18 +02:00
parent 50ef772271
commit bbe19a6798
1 changed files with 6 additions and 1 deletions

View File

@ -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