Skip to content

Commit 36506a3

Browse files
committed
workflow
1 parent e505857 commit 36506a3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ jobs:
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
4747
CIBW_TEST_COMMAND: >
48-
pip install psutil &&
49-
pip install pillow &&
48+
pip install -r {project}/requirements.txt -r {project}/requirements-dev.txt
5049
python {project}/tests/test_all.py --image test_image.jpg --method pillow &&
5150
python {project}/tests/test_all.py --image test_image.jpg --method cpp
5251
CIBW_BEFORE_BUILD: >

requirements-dev.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
psutil
1+
psutil
2+
rich

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pillow

0 commit comments

Comments
 (0)