Skip to content

Commit 8ea0e89

Browse files
committed
workflow
1 parent 36506a3 commit 8ea0e89

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,13 @@ jobs:
4444
CIBW_BUILD_VERBOSITY: 1
4545
CIBW_SKIP: "cp37-* cp38-* pp*" # Skip Python 3.7, 3.8 and PyPy as per existing workflows
4646
CIBW_ARCHS_MACOS: "x86_64 arm64" # Build for both architectures on macOS
47-
CIBW_TEST_COMMAND: >
47+
CIBW_BEFORE_TEST: >
4848
pip install -r {project}/requirements.txt -r {project}/requirements-dev.txt
49-
python {project}/tests/test_all.py --image test_image.jpg --method pillow &&
50-
python {project}/tests/test_all.py --image test_image.jpg --method cpp
49+
CIBW_TEST_COMMAND: >
50+
python {project}/tests/test_all.py --image test_image.jpg --quality 1 --method pillow --tonal-spot &&
51+
python {project}/tests/test_all.py --image test_image.jpg --quality 1 --method cpp --tonal-spot
5152
CIBW_BEFORE_BUILD: >
52-
pip install setuptools wheel rich requests pillow
53+
pip install setuptools wheel
5354
CIBW_ENVIRONMENT: >
5455
PURE_PYTHON=False
5556

0 commit comments

Comments
 (0)