From cb2cee792d9a6306e2dd04678d65a80de7ae6ffb Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Tue, 6 Dec 2022 04:16:42 +0000 Subject: [PATCH] Disable xdist in ELN builds --- python-sqlalchemy.spec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python-sqlalchemy.spec b/python-sqlalchemy.spec index 4f0db2c..9fbc786 100644 --- a/python-sqlalchemy.spec +++ b/python-sqlalchemy.spec @@ -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