Skip to content

Commit e49aabc

Browse files
committed
workflow
1 parent 8ea0e89 commit e49aabc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Download test image file
3434
run: |
3535
# Photo by Dillon Hunt (https://unsplash.com/@dillon_hunt) on https://unsplash.com/photos/an-aerial-view-of-the-ocean-and-rocks-zQLd8RXbenw
36-
curl -L -o test_image.jpg "https://unsplash.com/photos/zQLd8RXbenw/download?ixid=M3wxMjA3fDB8MXx0b3BpY3x8NnNNVmpUTFNrZVF8fHx8fDJ8fDE3MzY0MDA3NTd8&force=true&w=2400"
36+
curl -L -o /tmp/test_image.jpg "https://unsplash.com/photos/zQLd8RXbenw/download?ixid=M3wxMjA3fDB8MXx0b3BpY3x8NnNNVmpUTFNrZVF8fHx8fDJ8fDE3MzY0MDA3NTd8&force=true&w=2400"
3737
# This step needs to be available for the test command
3838
# For Windows, use PowerShell equivalent
3939
shell: bash
@@ -47,8 +47,8 @@ jobs:
4747
CIBW_BEFORE_TEST: >
4848
pip install -r {project}/requirements.txt -r {project}/requirements-dev.txt
4949
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
50+
python {project}/tests/test_all.py --image /tmp/test_image.jpg --quality 1 --method pillow --tonal-spot &&
51+
python {project}/tests/test_all.py --image /tmp/test_image.jpg --quality 1 --method cpp --tonal-spot
5252
CIBW_BEFORE_BUILD: >
5353
pip install setuptools wheel
5454
CIBW_ENVIRONMENT: >

0 commit comments

Comments
 (0)