We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d2aae8 commit 9554a7fCopy full SHA for 9554a7f
.github/workflows/tests.yml
@@ -54,7 +54,13 @@ jobs:
54
python -m pip install --upgrade pip
55
pip install .[tests]
56
57
+ - name: Run tests (skipping slow)
58
+ if: github.event_name == 'pull_request'
59
+ run: |
60
+ pytest -v --cov-report=xml --cov=s2fft --cov-config=.coveragerc -m "no slow"
61
+
62
- name: Run tests
63
+ if: github.event_name != 'pull_request'
64
run: |
65
pytest -v --cov-report=xml --cov=s2fft --cov-config=.coveragerc
66
0 commit comments