diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/run-tests.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index eb5140ca..b217d71d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -270,7 +270,7 @@ jobs: timeout-minutes: 5 run: > ssh -i ssh-key -p2222 alpine@localhost "cd accel-ppp/tests && - doas python3 -m pytest -Wall --order-dependencies -v -m \"not ipoe_driver and not vlan_mon_driver\"" + doas python3 -m pytest -Wall --order-dependencies -v -m \"not ipoe_driver and not vlan_mon_driver and not chap_secrets\"" - name: Display processes and dmesg after tests if: ${{ always() }} run: > @@ -288,7 +288,7 @@ jobs: if: ${{ always() }} run: > ssh -i ssh-key -p2222 alpine@localhost "cd accel-ppp/tests && - doas python3 -m pytest -Wall --order-dependencies -v -m \"not vlan_mon_driver\"" + doas python3 -m pytest -Wall --order-dependencies -v -m \"not vlan_mon_driver and not chap_secrets\"" - name: Display processes and dmesg after tests if: ${{ always() }} run: > @@ -305,7 +305,7 @@ jobs: timeout-minutes: 5 run: > ssh -i ssh-key -p2222 alpine@localhost "cd accel-ppp/tests && - doas python3 -m pytest -Wall --order-dependencies -v" + doas python3 -m pytest -Wall --order-dependencies -v -m \"not chap_secrets\"" - name: Display processes and dmesg after tests if: ${{ always() }} run: > |