Skip to content

Commit

Permalink
test: maybe pytest script not always available?!?!?
Browse files Browse the repository at this point in the history
  • Loading branch information
dhdaines committed Nov 9, 2022
1 parent d272c4d commit 8ae0fe3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@ jobs:
uses: actions/checkout@v3
- name: Install
run: |
pip install -r requirements.dev.txt
pip install .
pip3 install -r requirements.dev.txt
pip3 install .
- name: Run tests
run: pytest
run: python3 -m pytest
wintest:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
run: |
pip install -r requirements.dev.txt
pip install .
pip3 install -r requirements.dev.txt
pip3 install .
- name: Run tests
run: pytest
run: python3 -m pytest
mactest:
runs-on: macos-latest
steps:
Expand All @@ -52,7 +52,7 @@ jobs:
pip3 install -r requirements.dev.txt
pip3 install .
- name: Run tests
run: pytest
run: python3 -m pytest
nodetest:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 8ae0fe3

Please sign in to comment.