Skip to content

Commit

Permalink
Update test command
Browse files Browse the repository at this point in the history
  • Loading branch information
scaramallion committed Jan 5, 2024
1 parent 1abd4ca commit b03be1f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pytest-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
- name: Run pytest
run: |
pytest --cov openjpeg
pytest --cov openjpeg openjpeg/tests
- name: Install pydicom release and rerun pytest
run: |
pip install pydicom pylibjpeg
pytest --cov openjpeg
pytest --cov openjpeg openjpeg/tests
osx:
runs-on: macos-latest
Expand Down Expand Up @@ -69,12 +69,12 @@ jobs:
- name: Run pytest
run: |
pytest --cov openjpeg
pytest --cov openjpeg openjpeg/tests
- name: Install pydicom release and rerun pytest
run: |
pip install pydicom pylibjpeg
pytest --cov openjpeg
pytest --cov openjpeg openjpeg/tests
ubuntu:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -103,19 +103,19 @@ jobs:
- name: Run pytest
run: |
pytest --cov openjpeg
pytest --cov openjpeg openjpeg/tests
- name: Install pydicom release and rerun pytest
run: |
pip install pydicom pylibjpeg
pytest --cov openjpeg
pytest --cov openjpeg openjpeg/tests
- name: Switch to pydicom dev and rerun pytest (3.10+)
if: ${{ contains('3.10 3.11 3.12', matrix.python-version) }}
run: |
pip uninstall -y pydicom
pip install git+https://github.com/pydicom/pydicom
pytest --cov openjpeg
pytest --cov openjpeg openjpeg/tests
- name: Send coverage results
if: ${{ success() && matrix.coverage == 'coverage' }}
Expand Down

0 comments on commit b03be1f

Please sign in to comment.