Skip to content

Commit

Permalink
DEBUG: limit tests being run
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Oct 29, 2024
1 parent c505374 commit b6a03fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
run: python -m pip install .[test]

- name: Run tests
run: python -m pytest --showlocals -vv --cov --cov-report=xml -k in
run: python -m pytest tests/test_wheel.py --showlocals -vv --cov --cov-report=xml -k in

- name: Upload coverage report
uses: codecov/codecov-action@v4
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
run: python -m pip install .[test]

- name: Run tests
run: python -m pytest --showlocals -vv -k in
run: python -m pytest tests/test_wheel.py --showlocals -vv -k in

cygwin:
runs-on: windows-latest
Expand Down Expand Up @@ -210,6 +210,6 @@ jobs:
shell: C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}

- name: Run tests
run: python -m pytest --showlocals -vv -k in
run: python -m pytest tests/test_wheel.py --showlocals -vv -k in
shell: C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}

0 comments on commit b6a03fc

Please sign in to comment.