Disable xdist in ELN builds

This commit is contained in:
Yaakov Selkowitz 2022-12-06 04:16:42 +00:00
parent 9e5c98850c
commit cb2cee792d
1 changed files with 4 additions and 4 deletions

View File

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