Uh oh!
There was an error while loading. Please reload this page.
- 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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
7697926c86cfb492446b5df30e92b9b25e37c681d37e1c52611d123c2078358a35033cc37c9203872c3c8666594923a09272c98d7File 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 |
|---|---|---|
| @@ -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 CollaboratorAuthor 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] | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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.