Skip to content

Commit

Permalink
Update CI test command
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Sep 8, 2020
1 parent d98918b commit 4441cff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Install Package
run: pip install .
- name: Run Tests
run: mpirun -np 2 python -c 'import pshmem; pshmem.test()'
run: mpirun -np 2 python -c 'import pshmem.test; pshmem.test.run()'
- name: Build source package
run: rm -rf dist && python setup.py sdist
- name: Build wheels
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install Package
run: pip3 install .
- name: Run Tests
run: mpirun -np 2 python3 -c 'import pshmem; pshmem.test()'
run: mpirun -np 2 python3 -c 'import pshmem.test; pshmem.test.run()'
macos:
runs-on: macos-latest
strategy:
Expand All @@ -44,4 +44,4 @@ jobs:
- name: Install Package
run: pip3 install .
- name: Run Tests
run: mpirun -np 2 python3 -c 'import pshmem; pshmem.test()'
run: mpirun -np 2 python3 -c 'import pshmem.test; pshmem.test.run()'

0 comments on commit 4441cff

Please sign in to comment.