From b6a03fc722ebf9f93bcc65b8df98a9c5406f2f62 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Tue, 29 Oct 2024 12:45:17 +0100 Subject: [PATCH] DEBUG: limit tests being run --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 038c8270..edf4e5c6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 @@ -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 @@ -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}