From 4d68b1666ace77980f47ff21a69343849903b1d4 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sun, 31 Mar 2024 15:55:23 +0200 Subject: [PATCH] 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?). --- tests/ci/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5