diff options
author | Dmitriy Eshenko <dmitriy.eshenko@accel-ppp.org> | 2023-10-03 13:28:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 13:28:33 +0300 |
commit | 68a5f8a179f94f85768527e04cdabf0712259fdf (patch) | |
tree | a7699b69790a3e4b40a116f1682c026b308a90f1 | |
parent | 7cd28573799f469053dd12e758e8f07408556c59 (diff) | |
parent | 6b12fd6731eb0d44cdf3c864cc9c9d7241cb7dc1 (diff) | |
download | accel-ppp-68a5f8a179f94f85768527e04cdabf0712259fdf.tar.gz accel-ppp-68a5f8a179f94f85768527e04cdabf0712259fdf.zip |
Merge pull request #113 from svlobanov/deb10_veth_vlan_disable_test
ci: disable vlan-mon related tests on Debian10
-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 48be9a6..03c2731 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" |