Skip to content

Commit cd7f8f6

Browse files
committed
ci: enable more tests
Signed-off-by: Christian Hopps <chopps@labn.net>
1 parent 139e124 commit cd7f8f6

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,38 @@ jobs:
298298
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/errors |& tee $tmpf
299299
grep -qvz SKIPPED $tmpf
300300
301+
- name: Floog/Aggregation test
302+
run: |
303+
set -e
304+
set -o pipefail
305+
tmpf=test-logs/results-flood.txt
306+
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/flood |& tee $tmpf
307+
grep -qvz SKIPPED $tmpf
308+
309+
- name: Fragment test
310+
run: |
311+
set -e
312+
set -o pipefail
313+
tmpf=test-logs/results-frags.txt
314+
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/frags |& tee $tmpf
315+
grep -qvz SKIPPED $tmpf
316+
317+
- name: MTU test
318+
run: |
319+
set -e
320+
set -o pipefail
321+
tmpf=test-logs/results-mtu.txt
322+
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/mtu |& tee $tmpf
323+
grep -qvz SKIPPED $tmpf
324+
325+
- name: Reorder test
326+
run: |
327+
set -e
328+
set -o pipefail
329+
tmpf=test-logs/results-reorder.txt
330+
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/reorder |& tee $tmpf
331+
grep -qvz SKIPPED $tmpf
332+
301333
- name: Simple test
302334
run: |
303335
set -e
@@ -312,7 +344,7 @@ jobs:
312344
set -e
313345
set -o pipefail
314346
tmpf=test-logs/results-utpkt.txt
315-
sudo python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/utpkt |& tee $tmpf
347+
sudo -E env CI=$CI python3 -m pytest -s --coverage --cov-build-dir=$PWD/output-linux tests/utpkt |& tee $tmpf
316348
grep -qvz SKIPPED $tmpf
317349
318350
- name: Extract coverage data

0 commit comments

Comments
 (0)