Skip to content

Commit

Permalink
Run full test suite on schedule build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
albrja committed Sep 21, 2023
1 parent 47df496 commit afa0f63
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,11 @@ jobs:
isort . --check --verbose --only-modified --diff
- name: Test
run: |
pytest ./tests
if github.event_name == 'schedule'; then
pytest --runslow ./tests
else
pytest ./tests
fi
- name: Doc build
run: |
make html -C docs/ SPHINXOPTS="-W --keep-going -n"
Expand Down

0 comments on commit afa0f63

Please sign in to comment.