From bcf98031080162aa500b7a4796b69ffc66a560fe Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Thu, 27 Jul 2023 21:32:41 +0000 Subject: [PATCH] ceph-volume: drop pytest-xdist usage This is causing issues in ceph-volume unit tests (Still some details not very clear so I can't explain for sure why for now). Let's run the tests serially for now until I figure out what's wrong. Signed-off-by: Guillaume Abrioux --- src/ceph-volume/tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ceph-volume/tox.ini b/src/ceph-volume/tox.ini index 696d6dcc837..f7d294a9aad 100644 --- a/src/ceph-volume/tox.ini +++ b/src/ceph-volume/tox.ini @@ -11,7 +11,7 @@ deps= allowlist_externals= ./tox_install_command.sh install_command=./tox_install_command.sh {opts} {packages} -commands=py.test --numprocesses=auto -vv {posargs:ceph_volume/tests} --ignore=ceph_volume/tests/functional +commands=py.test -vv {posargs:ceph_volume/tests} --ignore=ceph_volume/tests/functional [testenv:py3-flake8] deps=flake8 -- 2.39.5