-
Notifications
You must be signed in to change notification settings - Fork 1.3k
change(train): gate deep integ tests behind gpu_intensive, add shallow submit-then-stop suite #6176
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 all commits
7697926
c86cfb4
92446b5
df30e92
b9b25e3
7c681d3
7e1c526
11d123c
2078358
a35033c
c37c920
3872c3c
8666594
923a092
72c98d7
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 |
|---|---|---|
|
|
@@ -84,6 +84,15 @@ addopts = ["-vv"] | |
| testpaths = ["tests"] | ||
| markers = [ | ||
| "serial: marks tests that must run serially (not in parallel)", | ||
| # gpu_intensive and us_east_1 are declared in tox.ini too, but pytest reads | ||
| # its config from this file (it is the first of the candidates present), so | ||
| # markers listed only there are unregistered at runtime and raise | ||
| # PytestUnknownMarkWarning. Registering them here matters because the PR gate | ||
| # selects with -m "not gpu_intensive and not us_east_1": a typo'd marker name | ||
| # would otherwise silently put an expensive deep test back on the gate instead | ||
| # of warning. | ||
| "gpu_intensive: marks a test that consumes real training capacity (scheduled CI, not PR checks); see tests/integ/train/shallow", | ||
| "us_east_1: marks a test that must run in us-east-1 (Nova); runs in the us-east-1 integ job", | ||
|
Collaborator
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. Instead of using
Collaborator
Author
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. yes, these are existing markers, need to reword these. We will be removing most of the markers and merging them together. |
||
| ] | ||
|
|
||
| [tool.black] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will move this job to codebuild after initial POC and outcome.