Exclude gil_in_var on i686

This commit is contained in:
Miro Hrončok 2023-10-18 00:29:27 +02:00
parent 7b55261c3d
commit 2323ac7d60
1 changed files with 6 additions and 1 deletions

View File

@ -91,10 +91,15 @@ Provides: bundled(python3dist(tempita))
%check
# run.pstats_profile_test* fails on Python 3.12
# https://github.com/cython/cython/issues/5470
# run.parallel fails on i686
# https://github.com/cython/cython/issues/2807
# gil_in_var fails on i686
# https://github.com/cython/cython/issues/5768
%{python3} runtests.py -vv --no-pyregr %{?_smp_mflags} \
--exclude 'run.pstats_profile_test*' \
%ifarch %{ix86}
--exclude run.parallel # https://github.com/cython/cython/issues/2807
--exclude run.parallel \
--exclude gil_in_var \
%endif
%endif