diff options
author | bors-servo <infra@servo.org> | 2023-06-30 00:18:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-30 00:18:58 +0200 |
commit | 57d34605e930501654bd3c267a25643c24e7545f (patch) | |
tree | 1f6efb28b1b0949e63a9b63ca42bd1744b2bdae3 /python/tidy/__init__.py | |
parent | 325741438562e9682a1c66fafeae2dc33ca3ab8e (diff) | |
parent | ae9a9e1d17b57f6566db56a2e6f1cb9b9bec8d6a (diff) | |
download | servo-57d34605e930501654bd3c267a25643c24e7545f.tar.gz servo-57d34605e930501654bd3c267a25643c24e7545f.zip |
Auto merge of #29923 - mrobinson:test-scripts, r=jdm
Combine all script tests into `test-scripts`
Remove:
- tidy self test support from `./mach test`
- `./mach test-idl`
Adds a `./mach test-scripts` command that is responsible for running all
Python script tests. Run this during the CI to catch regressions in
changes to scripts. The WebIDL tests are still *very* slow and there are
from Gecko, so only run them when "-a" is passed meaning all tests.
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] There are tests for these changes
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'python/tidy/__init__.py')
-rw-r--r-- | python/tidy/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tidy/__init__.py b/python/tidy/__init__.py index 74a15acad8f..4d834ec6d7a 100644 --- a/python/tidy/__init__.py +++ b/python/tidy/__init__.py @@ -8,4 +8,4 @@ # except according to those terms. from .tidy import scan # noqa -from .test import do_tests # noqa +from .test import run_tests # noqa |