Skip to content

Commit ef903ea

Browse files
committed
Fix syntax running python tests on windows
1 parent a56298e commit ef903ea

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/continuous_integration.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,12 @@ jobs:
120120
with:
121121
name: opensim-4.5.2-cp311-cp311-win_amd64.whl
122122
path: ~/opensim-core-install/sdk/python/dist/opensim-4.5.2-cp311-cp311-win_amd64.whl
123-
# Run python tests.
124-
python -m unittest discover --start-directory opensim/tests --verbose
123+
124+
- name: Test Python bindings
125+
run: |
126+
cd $GITHUB_WORKSPACE/../opensim-core-install/sdk/Python
127+
# Run the python tests, verbosely.
128+
python3 -m unittest discover --start-directory opensim/tests --verbose
125129
126130
- name: Upload opensim-core
127131
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)