Skip to content

Commit e536a7e

Browse files
committed
Run make-exports step with uv python
1 parent c97b57e commit e536a7e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/scripts/test.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ case $1 in
124124
exit $EXIT_STATE
125125
;;
126126

127+
make-exports)
128+
python test/image/make_exports.py || EXIT_STATE=$?
129+
exit $EXIT_STATE
130+
;;
131+
127132
test-image)
128133
node test/image/compare_pixels_test.js || { tar -cvf build/baselines.tar build/test_images/*.png ; exit 1 ; } || EXIT_STATE=$?
129134
exit $EXIT_STATE

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ jobs:
497497
sudo apt-get install poppler-utils
498498
499499
- name: Create svg, jpg, jpeg, webp, pdf and eps files
500-
run: sudo python3 test/image/make_exports.py
500+
run: .github/scripts/test.sh make-exports
501501

502502
- uses: actions/upload-artifact@v7
503503
with:

0 commit comments

Comments
 (0)