Skip to content

Commit

Permalink
Use python instead of py
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilDohne committed Mar 8, 2024
1 parent d900157 commit e804a2a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ jobs:
CIBW_SKIP: "*-musllinux_* pp*" #disable musllinux and pypy builds for now to speed up execution
# We "Test" the python executable by running all our example files, this would be done a little better in the future
CIBW_TEST_COMMAND: >
py {project}/PhotoshopExamples/AddLayerMasks/add_layer_masks.py &&
py {project}/PhotoshopExamples/CreateGroups/create_groups.py &&
py {project}/PhotoshopExamples/CreateSimpleDocument/create_simple_document.py &&
py {project}/PhotoshopExamples/ExtractImageData/extract_image_data.py &&
py {project}/PhotoshopExamples/ModifyLayerStructure/modify_layer_structure.py
python {project}/PhotoshopExamples/AddLayerMasks/add_layer_masks.py &&
python {project}/PhotoshopExamples/CreateGroups/create_groups.py &&
python {project}/PhotoshopExamples/CreateSimpleDocument/create_simple_document.py &&
python {project}/PhotoshopExamples/ExtractImageData/extract_image_data.py &&
python {project}/PhotoshopExamples/ModifyLayerStructure/modify_layer_structure.py
- name: Verify clean directory
run: git diff --exit-code
Expand Down

0 comments on commit e804a2a

Please # to comment.