Benjamin Joyce (Ben)It seems a bit weird that individual tests would need to know about this.
Should we just set this in PRESUBMIT.py instead
So currently, all tests in presubmit are presumed to have a "flat" module scheme and most of them do.
You'd be proposing to
These tests are ran in presubmit and need to upload as a flat type,Benjamin Joyce (Ben)nit: s/are ran/are run/
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Bug:47777155Wrong bug number? (Says invalid ID)
# Needed to prevent an issue with conflicting module schemes when uploading"prevent an issue" begs the question: what is the issue?
Can you describe the issue?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Wrong bug number? (Says invalid ID)
Done. Should have been: 467777155
# Needed to prevent an issue with conflicting module schemes when uploading"prevent an issue" begs the question: what is the issue?
Can you describe the issue?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
# The presubmit tests are all ran together with the module scheme set tonit: s/ran/run/
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
# The presubmit tests are all ran together with the module scheme set toBenjamin Joyce (Ben)nit: s/ran/run/
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
13 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: third_party/blink/renderer/build/scripts/PRESUBMIT.py
Insertions: 1, Deletions: 1.
@@ -37,7 +37,7 @@
def _RunTests(input_api, output_api):
- # The presubmit tests are all ran together with the module scheme set to
+ # The presubmit tests are all run together with the module scheme set to
# "flat" at the recipe level. But these presubmit tests run through
# a test runner that parses the test as a "pyunit" test. The environment
# variable forces the test runner to parse the tests as a flat test,
```
```
The name of the file: tools/grit/PRESUBMIT.py
Insertions: 1, Deletions: 1.
@@ -11,7 +11,7 @@
import os
def RunUnittests(input_api, output_api):
- # The presubmit tests are all ran together with the module scheme set to
+ # The presubmit tests are all run together with the module scheme set to
# "flat" at the recipe level. But these presubmit tests run through
# a test runner that parses the test as a "pyunit" test. The environment
# variable forces the test runner to parse the tests as a flat test,
```
```
The name of the file: third_party/blink/renderer/build/scripts/blinkbuild/PRESUBMIT.py
Insertions: 1, Deletions: 1.
@@ -5,7 +5,7 @@
import os
def _RunBindingsTests(input_api, output_api):
- # The presubmit tests are all ran together with the module scheme set to
+ # The presubmit tests are all run together with the module scheme set to
# "flat" at the recipe level. But these presubmit tests run through
# a test runner that parses the test as a "pyunit" test. The environment
# variable forces the test runner to parse the tests as a flat test,
```
```
The name of the file: third_party/blink/renderer/bindings/PRESUBMIT.py
Insertions: 1, Deletions: 1.
@@ -34,7 +34,7 @@
import os
def _RunBindingsTests(input_api, output_api):
- # The presubmit tests are all ran together with the module scheme set to
+ # The presubmit tests are all run together with the module scheme set to
# "flat" at the recipe level. But these presubmit tests run through
# a test runner that parses the test as a "pyunit" test. The environment
# variable forces the test runner to parse the tests as a flat test,
```
Add environment variable that sets the module_scheme
Sets a module scheme as an environment variable for resultdb upload.
These tests are run in presubmit and need to upload as a flat type,
where as by default, they upload with pyunit.
These tests are called by the presubmit tests and were failing with the resultdb migration in:
https://ci.chromium.org/ui/p/chromium/builders/ci/linux-presubmit/35142/overview
This change will be used when this catapult CL is rolled:
https://chromium-review.googlesource.com/c/catapult/+/7274125
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |