diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90069bd..0169b7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -279,7 +279,7 @@ jobs: run: | set -e tmpf=test-logs/results-config.txt - sudo -E env CI=$CI python3 -m pytest -s --coverage tests/config | tee $tmpf + sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/config | tee $tmpf grep -v SKIPPED $tmpf - name: Errors test @@ -287,7 +287,7 @@ jobs: set -e tmpf=test-logs/results-errors.txt tmpf=/tmp/test-results-$$.txt - sudo -E env CI=$CI python3 -m pytest -s --coverage tests/errors | tee $tmpf + sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/errors | tee $tmpf grep -v SKIPPED $tmpf - name: Simple test @@ -295,7 +295,7 @@ jobs: set -e tmpf=test-logs/results-simplenet.txt tmpf=/tmp/test-results-$$.txt - sudo -E env CI=$CI python3 -m pytest -s --coverage tests/simplenet | tee $tmpf + sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/simplenet | tee $tmpf grep -v SKIPPED $tmpf # Restore longer running test once working @@ -303,7 +303,7 @@ jobs: run: | set -e tmpf=test-logs/results-utpkt.txt - sudo python3 -m pytest -s --coverage tests/utpkt | tee $tmpf + sudo python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/utpkt | tee $tmpf grep -v SKIPPED $tmpf - name: Extract coverage data diff --git a/python-requirements.txt b/python-requirements.txt index 10baa61..747d22a 100644 --- a/python-requirements.txt +++ b/python-requirements.txt @@ -1,5 +1,5 @@ cryptography>=41.0.2 -munet>=0.13.20 +munet>=0.14.6 pexpect>=4.8.0 pytest>=7.0.0 pytest-asyncio>=0.18.3