mirror of
https://github.com/servo/servo
synced 2026-05-10 17:12:23 +02:00
`mach test-devtools` uses [unittest](https://docs.python.org/3/library/unittest.html) without [unittest.main()](https://docs.python.org/3/library/unittest.html#unittest.main), so we can parse arguments and set up the test runner how we want, but this means there’s currently no way to filter tests on the command line. this patch plumbs the positional arguments (if any) into the TestLoader’s [testNamePatterns](https://docs.python.org/3/library/unittest.html#unittest.TestLoader.testNamePatterns), with extra logic to treat any pattern `pattern` not containing `*` like `*pattern*`. this is the same behaviour as unittest.main() [`-k`](https://docs.python.org/3/library/unittest.html#cmdoption-unittest-k): ``` $ ./mach test-devtools domparser responsexml Running devtools tests... Running 2 tests: - test_source_content_inline_script_with_domparser (servo.devtools_tests.DevtoolsTests.test_source_content_inline_script_with_domparser) - test_source_content_inline_script_with_responsexml (servo.devtools_tests.DevtoolsTests.test_source_content_inline_script_with_responsexml) test_source_content_inline_script_with_domparser (servo.devtools_tests.DevtoolsTests.test_source_content_inline_script_with_domparser) ... ok test_source_content_inline_script_with_responsexml (servo.devtools_tests.DevtoolsTests.test_source_content_inline_script_with_responsexml) ... ok ---------------------------------------------------------------------- Ran 2 tests in 4.055s OK ``` Testing: not really worth automated testing, but tested manually above Fixes: part of #36325 --------- Signed-off-by: Delan Azabani <dazabani@igalia.com>
This directory contains various Python modules used to support servo development.
servo
servo-specific python code e.g. implementations of mach commands. This is the canonical repository for this code.
tidy
servo-tidy is used to check licenses, line lengths, whitespace, ruff on Python files, lock file versions, and more.
wpt
servo-wpt is a module with support scripts for running, importing, exporting, updating manifests, and updating expectations for WPT tests.