-
Notifications
You must be signed in to change notification settings - Fork 228
Run full tests only on Wednesday scheduled jobs #1833
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
37a7530
2c1c202
27a6318
77420f2
085ceb5
d757dfb
89c4b24
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -134,9 +134,15 @@ jobs: | |||||
pip install dist/* | ||||||
|
||||||
# Run the tests | ||||||
- name: Test with pytest | ||||||
- name: Run tests | ||||||
if: github.event_name != 'schedule' | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What about something like
Suggested change
Though not sure if it will error for regular (non-scheduled) tests, e.g. in PRs. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No errors in PRs. |
||||||
run: make test PYTEST_EXTRA="-r P" | ||||||
|
||||||
# Run full tests including doctests | ||||||
seisman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
- name: Run full tests | ||||||
if: github.event_name == 'schedule' | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if GitHub Actions uses
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
It's |
||||||
run: make fulltest PYTEST_EXTRA="-r P" | ||||||
|
||||||
# Upload diff images on test failure | ||||||
- name: Upload diff images if any test fails | ||||||
uses: actions/upload-artifact@v2 | ||||||
|
Uh oh!
There was an error while loading. Please reload this page.