Skip to content

Commit

Permalink
Fix schedule tests (#106)
Browse files Browse the repository at this point in the history
Mic-4666/Fix schedule tests

Fixes if block to trigger slow tests on schedule workflow
- *Category*: CI
- *JIRA issue*: [MIC-4666](https://jira.ihme.washington.edu/browse/MIC-4666)

Changes and notes
-fixes if block to trigger slow tests on schedule workflow
  • Loading branch information
albrja committed Oct 26, 2023
1 parent 874651b commit ec19501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
isort . --check --verbose --only-modified --diff
- name: Test
run: |
if github.event_name == 'schedule'; then
if "${{ github.event_name == 'schedule' }}"; then
pytest --runslow ./tests
else
pytest ./tests
Expand Down

0 comments on commit ec19501

Please sign in to comment.