From: Vincent Bernat Date: Sun, 31 Mar 2024 13:55:23 +0000 (+0200) Subject: build: don't use boxed feature of xdist X-Git-Tag: 1.0.19~62 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4d68b1666ace77980f47ff21a69343849903b1d4;p=thirdparty%2Flldpd.git build: don't use boxed feature of xdist It has been removed from 3.0. This could be replaced by pytest-forked if needed. I don't really remember why I was using that (I suppose it was to avoid segfaults, due maybe to ctypes?). --- diff --git a/tests/ci/run.sh b/tests/ci/run.sh index acd407c9..8fe37038 100755 --- a/tests/ci/run.sh +++ b/tests/ci/run.sh @@ -45,7 +45,7 @@ case "$(uname -s)" in Linux) # Integration tests cd ../tests/integration - sudo $(which python3) -m pytest -n 5 -vv --boxed || \ + sudo $(which python3) -m pytest -n 5 -vv || \ sudo $(which python3) -m pytest -vvv --last-failed --maxfail=5 ;; esac