Skip to content

Commit

Permalink
ci: enable more tests
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Hopps <chopps@labn.net>
  • Loading branch information
choppsv1 committed Sep 6, 2024
1 parent aeb761a commit 32100ad
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,38 @@ jobs:
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/errors |& tee $tmpf
grep -qvz SKIPPED $tmpf
- name: Floog/Aggregation test
run: |
set -e
set -o pipefail
tmpf=test-logs/results-flood.txt
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/flood |& tee $tmpf
grep -qvz SKIPPED $tmpf
- name: Fragment test
run: |
set -e
set -o pipefail
tmpf=test-logs/results-frags.txt
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/frags |& tee $tmpf
grep -qvz SKIPPED $tmpf
- name: MTU test
run: |
set -e
set -o pipefail
tmpf=test-logs/results-mtu.txt
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/mtu |& tee $tmpf
grep -qvz SKIPPED $tmpf
- name: Reorder test
run: |
set -e
set -o pipefail
tmpf=test-logs/results-reorder.txt
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/reorder |& tee $tmpf
grep -qvz SKIPPED $tmpf
- name: Simple test
run: |
set -e
Expand All @@ -312,7 +344,7 @@ jobs:
set -e
set -o pipefail
tmpf=test-logs/results-utpkt.txt
sudo python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/utpkt |& tee $tmpf
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/utpkt |& tee $tmpf
grep -qvz SKIPPED $tmpf
- name: Extract coverage data
Expand Down

0 comments on commit 32100ad

Please sign in to comment.