Test without pytest-xdist on Fedora 38

For some reason, when running tests in parallel using pytest-xdist,
worker processes are very prone to crash, causing test failures.

Signed-off-by: Nils Philippsen <nils@tiptoe.de>
This commit is contained in:
Nils Philippsen 2022-11-09 09:51:37 +01:00
parent 03b848d2a7
commit d2d43008ea
1 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,11 @@
# when bootstrapping Python, pytest-xdist is not yet available
%if 0%{?fedora} != 38
%bcond_without xdist
%else
# on Fedora 38, tests crash when being run by xdist right now
%bcond_with xdist
%endif
%global srcname SQLAlchemy