diff options
author | Sergey V. Lobanov <sergey@lobanov.in> | 2023-10-03 11:36:16 +0200 |
---|---|---|
committer | Sergey V. Lobanov <sergey@lobanov.in> | 2023-10-03 11:36:16 +0200 |
commit | 6b12fd6731eb0d44cdf3c864cc9c9d7241cb7dc1 (patch) | |
tree | a7699b69790a3e4b40a116f1682c026b308a90f1 /.github/workflows | |
parent | 7cd28573799f469053dd12e758e8f07408556c59 (diff) | |
download | accel-ppp-6b12fd6731eb0d44cdf3c864cc9c9d7241cb7dc1.tar.gz accel-ppp-6b12fd6731eb0d44cdf3c864cc9c9d7241cb7dc1.zip |
ci: disable vlan-mon related tests on Debian10
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/run-tests.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 48be9a6a..03c27319 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -171,7 +171,8 @@ jobs: - name: Run tests (all) timeout-minutes: 5 - if: ${{ always() }} + # vlan-mon tests fail on Debian10 due to Debian10 bug so don't run all tests on deb10 + if: ${{ matrix.distro != 'Debian10' }} run: > ssh -i ssh-key -p2222 user@localhost "cd accel-ppp/tests && sudo python3 -m pytest -Wall -v" |