summaryrefslogtreecommitdiff
path: root/tests/wpt/wpt.ts
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-04-03 12:26:13 +1100
committerGitHub <noreply@github.com>2024-04-03 12:26:13 +1100
commitf76c38b13e6c9427e1b426dec160064aef985b08 (patch)
tree4938b1087b652facb58ea15a3d66eb0e52c08c03 /tests/wpt/wpt.ts
parent57572dafd5218119efb510a5e8a1cc82d4afa92f (diff)
chore: ensure `python@3.11` is installed for WPT tests (#23195)
This provides a more thorough check of whether the correct Python version is installed for running WPT tests.
Diffstat (limited to 'tests/wpt/wpt.ts')
-rwxr-xr-xtests/wpt/wpt.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/wpt/wpt.ts b/tests/wpt/wpt.ts
index 35a7c1e79..056db5dc0 100755
--- a/tests/wpt/wpt.ts
+++ b/tests/wpt/wpt.ts
@@ -72,6 +72,7 @@ switch (command) {
break;
case "run":
+ await checkPy3Available();
await cargoBuild();
await run();
break;