diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index e8d3b00b..28e84c5f 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -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 ../../PhotoshopExamples/AddLayerMasks/add_layer_masks.py && - py ../../PhotoshopExamples/CreateGroups/create_groups.py && - py ../../PhotoshopExamples/CreateSimpleDocument/create_simple_document.py && - py ../../PhotoshopExamples/ExtractImageData/extract_image_data.py && - py ../../PhotoshopExamples/ModifyLayerStructure/modify_layer_structure.py + 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 - name: Verify clean directory run: git diff --exit-code