Skip to content

Commit 5aacb7c

Browse files
committed
support big gillion
1 parent 0af37a2 commit 5aacb7c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pypi-build-artifacts.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@ jobs:
7070
CIBW_ARCHS: "auto64"
7171
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10"
7272
CIBW_TEST_REQUIRES: "pytest==7.4.2 moto==5.0.1"
73-
CIBW_TEST_COMMAND: "PYTHON_GIL=1 pytest {project}/tests/avro/test_decoder.py"
73+
CIBW_TEST_COMMAND: >
74+
python -c "import os,sys,pytest;
75+
os.environ['PYTHON_GIL']='1';
76+
sys.exit(pytest.main(['{project}/tests/avro/test_decoder.py']))"
7477
CIBW_BUILD_VERBOSITY: 1
7578
# Ignore tests for pypy since not all dependencies are compiled for it
7679
# and would require a local rust build chain

0 commit comments

Comments
 (0)