Skip to content

Commit

Permalink
ci: split the test with the operators folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
paquiteau committed Feb 22, 2024
1 parent 371b13d commit a3bb288
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
shell: bash
run: |
export COVERAGE_FILE=coverage_${{ matrix.backend }}
pytest --backend ${{ matrix.backend }} --ref ${{ env.ref_backend }} --cov --disable-pytest-warnings --cov-branch --cov-report=term
pytest -k='operators' --backend ${{ matrix.backend }} --ref ${{ env.ref_backend }} --cov --disable-pytest-warnings --cov-branch --cov-report=term
- name: Upload coverage
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
cd $RUNNER_WORKSPACE/mri-nufft
source $RUNNER_WORKSPACE/venv/bin/activate
export COVERAGE_FILE=coverage_${{ matrix.backend }}
python -m pytest --ref ${{ env.ref_backend }} --backend ${{ matrix.backend }} --disable-pytest-warnings --cov --cov-branch --cov-report=term
python -m pytest -k='operators' --ref ${{ env.ref_backend }} --backend ${{ matrix.backend }} --disable-pytest-warnings --cov --cov-branch --cov-report=term
- name: Upload coverage
if: success()
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
shell: bash
run: |
export COVERAGE_FILE=coverage_plots
pytest examples --cov --cov-branch --cov-report=term
pytest examples tests -k="not operators" --cov --cov-branch --cov-report=term
- name: Upload coverage
if: success()
Expand Down

0 comments on commit a3bb288

Please sign in to comment.