We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0af37a2 commit 5aacb7cCopy full SHA for 5aacb7c
.github/workflows/pypi-build-artifacts.yml
@@ -70,7 +70,10 @@ jobs:
70
CIBW_ARCHS: "auto64"
71
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10"
72
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"
+ 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']))"
77
CIBW_BUILD_VERBOSITY: 1
78
# Ignore tests for pypy since not all dependencies are compiled for it
79
# and would require a local rust build chain
0 commit comments