Skip to content

Commit

Permalink
Run full test suite on schedule build (#103)
Browse files Browse the repository at this point in the history
Mic-4380/Run full test suite on schedule build

Mic-4380/Run full test suite on schedule build
- *Category*: CI
- *JIRA issue*: [MIC-4380](https://jira.ihme.washington.edu/browse/MIC-4380)
- *Research reference*: <!--Link to research documentation for code -->

Changes and notes
-Run full test suite on schedule build

Verification and Testing
  • Loading branch information
albrja committed Sep 22, 2023
1 parent 9e31c9c commit 6deb0b1
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 @@ -39,7 +39,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 6deb0b1

Please sign in to comment.