File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ SCRIPT_DIR=$(cd $(dirname "$0") && pwd -P)
55WPT_ROOT=$SCRIPT_DIR /../..
66cd $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 "
1414 echo " Skipping tools unittest"
1515fi
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
Original file line number Diff line number Diff 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."""
You can’t perform that action at this time.
0 commit comments