Skip to content

Commit

Permalink
fix(ci): try to make pytest actually detect argus
Browse files Browse the repository at this point in the history
  • Loading branch information
anand-bala committed Oct 4, 2023
1 parent ec0224d commit 10e09c0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: |
set -e
pip install pyargus --find-links dist --force-reinstall
pip install pytest pytest-cov hypothesis
pip install ./pyargus[test]
cd pyargus && pytest
- name: pytest
if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }}
Expand All @@ -62,6 +62,7 @@ jobs:
pip3 install -U pip pytest pytest-cov hypothesis
run: |
set -e
pip3 install ./pyargus[test]
pip3 install pyargus --find-links dist --force-reinstall
cd pyargus && pytest
Expand Down Expand Up @@ -92,8 +93,8 @@ jobs:
shell: bash
run: |
set -e
pip install ./pyargus[test]
pip install pyargus --find-links dist --force-reinstall
pip install pytest pytest-cov hypothesis
cd pyargus && pytest
macos:
Expand Down Expand Up @@ -122,8 +123,8 @@ jobs:
shell: bash
run: |
set -e
pip install ./pyargus[test]
pip install pyargus --find-links dist --force-reinstall
pip install pytest pytest-cov hypothesis
cd pyargus && pytest
sdist:
Expand Down

0 comments on commit 10e09c0

Please sign in to comment.