We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98308a9 commit 311562aCopy full SHA for 311562a
.github/workflows/pr-test.yml
@@ -124,7 +124,7 @@ jobs:
124
if [[ "${{ matrix.manylinux-version }}" == "manylinux_2_28_x86_64" ]]; then
125
dnf install libjpeg-devel -y
126
else
127
- yum -y install libjpeg-devel
+ yum -y install libjpeg-devel libffi-devel
128
fi
129
130
cd /work
@@ -134,6 +134,9 @@ jobs:
134
python setup.py build_ext --inplace
135
136
echo "Starting tests"
137
+ if [[ "${{ matrix.manylinux-version }}" == "manylinux2010_x86_64" ]]; then
138
+ python -m pip install cryptography==37
139
+ fi
140
python -m pip install -r requirements_tests.txt
141
PYTEST_SECRETS_KEY=${{ secrets.PYTEST_SECRETS_KEY }} TEST_CI=1 TEST_NO_UI=1 python -m pytest tests/ -n2 -v
142
0 commit comments