Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
[CI] Skip tests on doc-only changes#25261
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -12,6 +12,12 @@ on: | ||
pull_request: | ||
branches-ignore: | ||
- v[0-9]+.[0-9]+.[0-9x]+-doc | ||
paths-ignore: | ||
# Skip running tests if changes are only in documentation directories | ||
- 'doc/**' | ||
- 'examples/**' | ||
- 'plot_types/**' | ||
- 'tutorials/**' | ||
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. Need to add plot_types. Note if we get#25209 in we can just test on "galleries/**" 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. 👍 We can add more later no problem. I guess an alternative question for the future is whether we really want these at the top-level of the repository versus living under 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. We don't want to do that because then sphinx will try and process them and it will be confusing what the source and result of sphinx-gallery processing them is. However, getting them under one subdirectory at the top level is the goal of#25209 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. Ahh, I see. I have not been following the docs reorganization. That does seem like a nice change! | ||
schedule: | ||
# 5:47 UTC on Saturdays | ||
- cron: "47 5 * * 6" | ||