aboutsummaryrefslogtreecommitdiffstats
path: root/python/wpt/run.py
Commit message (Collapse)AuthorAgeFilesLines
* Enable the GitHub merge queue (#29989)Martin Robinson2023-07-131-3/+11
| | | Signed-off-by: Martin Robinson <mrobinson@igalia.com>
* Make the choice of layout runtime settingMartin Robinson2023-07-061-1/+5
| | | | Co-authored-by: Samson <16504129+sagudev@users.noreply.github.com>
* Rename metadata directoriesMartin Robinson2023-06-221-2/+2
| | | | | | | | This renames: - `tests/wpt/metadata` → `tests/wpt/meta-legacy-layout` - `tests/wpt/metadata-layout-2020` → `tests/wpt/meta` - `tests/wpt/mozilla/meta` → `tests/wpt/mozilla/meta-legacy-layout` - `tests/wpt/mozilla/meta-layout-2020` → `tests/wpt/mozilla/meta`
* Set `id_hash` as default wpt chunkersagudev2023-06-091-0/+3
|
* Fixed bug where test-wpt was unable to run on windows due to servowpt.py not ↵switchpiggy2023-04-231-3/+4
| | | | correctly setting default binary path
* Reorganize Servo's WPT Python scriptsMartin Robinson2023-04-201-0/+326
This change moves all of Servo's WPT Python support scripts into one directory as they were previously scattered throughout the directory structure. This should allow more code reuse and make it easier to understand how everything fits together. The changes: - `tests/wpt/update` → `python/wpt/importer` - `etc/ci/upstream-wpt-changes/wptupstreamer` → `python/wpt/exporter` - `etc/ci/upstream-wpt-changes/test.py` → `python/wpt/test.py` - `etc/ci/upstream-wpt-changes/tests` → `python/wpt/tests` - `tests/wpt/servowpt.py` → - `python/wpt/update.py` - `python/wpt/run.py` - `tests/wpt/manifestupdate.py` → `python/wpt/manifestupdate.py` This change also removes - The ability to run the `update-wpt` and `test-wpt` commands without using `mach`. These didn't work very well, because it was difficult to get all of the wptrunner and mach dependencies installed outside of the Python virtualenv. It's simpler if they are always run through `mach`. - The old WPT change upstreaming script that was no longer used.