Skip to content

Commit 6c4a459

Browse files
DanielRyanSmithDanielRyanSmith
authored andcommitted
run affected_tests
lint manifest_upload resources_unittest stability tools_unittest update_built wpt_integration wptrunner_infrastructure wptrunner_unittest for new Chromium revision
1 parent ddfef57 commit 6c4a459

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- script: |
4343
set -eux -o pipefail
4444
git fetch --depth 50 --quiet origin master
45-
./wpt test-jobs | while read job; do
45+
./wpt test-jobs --all | while read job; do
4646
echo "$job"
4747
echo "##vso[task.setvariable variable=$job;isOutput=true]true";
4848
done

tools/ci/ci_tools_unittest.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SCRIPT_DIR=$(cd $(dirname "$0") && pwd -P)
55
WPT_ROOT=$SCRIPT_DIR/../..
66
cd $WPT_ROOT
77

8-
if ./wpt test-jobs --includes tools_unittest; then
8+
if ./wpt test-jobs --all --includes tools_unittest; then
99
pip install --user -U tox
1010
cd tools
1111
tox -f "$TOXENV"
@@ -14,7 +14,7 @@ else
1414
echo "Skipping tools unittest"
1515
fi
1616

17-
if ./wpt test-jobs --includes wptrunner_unittest; then
17+
if ./wpt test-jobs --all --includes wptrunner_unittest; then
1818
cd tools/wptrunner
1919
tox -f "$TOXENV"
2020
cd $WPT_ROOT

tools/wpt/browser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ def _get_latest_chromium_revision(self):
881881

882882
def _get_pinned_chromium_revision(self):
883883
"""Returns the pinned Chromium revision number."""
884-
return get("https://storage.googleapis.com/wpt-versions/pinned_chromium_revision").text.strip()
884+
return get("https://storage.googleapis.com/wpt-versions/pinned_chromium_revision_NEW").text.strip()
885885

886886
def _get_chromium_revision(self, filename=None, version=None):
887887
"""Retrieve a valid Chromium revision to download a browser component."""

0 commit comments

Comments
 (0)