Skip to content

Commit

Permalink
Update WPT
Browse files Browse the repository at this point in the history
This requires upgrading to python3 which we get by just running ubuntu20
explicitly in CI.
  • Loading branch information
Sebmaster authored and domenic committed Mar 6, 2021
1 parent 4282ddb commit d5b1277
Show file tree
Hide file tree
Showing 7 changed files with 127,450 additions and 82,032 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/jsdom-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -32,7 +32,7 @@ jobs:
build-with-canvas:
env:
TEST_SUITE: 'node-canvas'
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -52,7 +52,7 @@ jobs:
build-with-browser:
env:
TEST_SUITE: 'browser'
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Run tests
run: yarn test-browser
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"lint-is-complete": "eslint-find-rules --unused .eslintrc.json",
"init-wpt": "git submodule update --init --recursive",
"reset-wpt": "rimraf ./test/web-platform-tests/tests && yarn init-wpt",
"update-wpt": "git submodule update --recursive --remote && cd test/web-platform-tests/tests && python wpt.py manifest --path ../wpt-manifest.json",
"update-wpt": "git submodule update --recursive --remote && cd test/web-platform-tests/tests && python3 wpt.py manifest --path ../wpt-manifest.json",
"update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS.txt",
"benchmark": "node ./benchmark/runner",
"benchmark-browser": "node ./benchmark/runner --bundle",
Expand Down
2 changes: 1 addition & 1 deletion test/web-platform-tests/tests
Submodule tests updated 12350 files

0 comments on commit d5b1277

Please sign in to comment.