Skip to content

Commit

Permalink
Fix ci_tests.yaml to actually run full tests on Wednesday (#2288)
Browse files Browse the repository at this point in the history
  • Loading branch information
weiji14 authored Dec 31, 2022
1 parent 198ebb9 commit ee04f5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ jobs:

# Run the regular tests
- name: Run tests
if: github.event.schedule != '0 0 * * 3'
if: ${{ !endsWith(github.event.schedule, '3') }}
run: make test PYTEST_EXTRA="-r P"

# Run full tests including doctests on Wednesday
- name: Run full tests
if: github.event_name == 'schedule' && github.event.schedule == '0 0 * * 3'
if: github.event_name == 'schedule' && endsWith(github.event.schedule, '3')
run: make fulltest PYTEST_EXTRA="-r P"

# Upload diff images on test failure
Expand Down

0 comments on commit ee04f5a

Please sign in to comment.