Skip to content

Commit

Permalink
run affected_tests
Browse files Browse the repository at this point in the history
lint
manifest_upload
resources_unittest
stability
tools_unittest
update_built
wpt_integration
wptrunner_infrastructure
wptrunner_unittest for new Chromium revision
  • Loading branch information
DanielRyanSmith committed Jan 29, 2025
1 parent d46d9ab commit 67c181f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- script: |
set -eux -o pipefail
git fetch --depth 50 --quiet origin master
./wpt test-jobs | while read job; do
./wpt test-jobs --all | while read job; do
echo "$job"
echo "##vso[task.setvariable variable=$job;isOutput=true]true";
done
Expand Down
4 changes: 2 additions & 2 deletions tools/ci/ci_tools_unittest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ run_applicable_tox () {
export TOXENV="$OLD_TOXENV"
}

if ./wpt test-jobs --includes tools_unittest; then
if ./wpt test-jobs --all --includes tools_unittest; then
pip install --user -U tox
cd tools
run_applicable_tox
Expand All @@ -27,7 +27,7 @@ else
echo "Skipping tools unittest"
fi

if ./wpt test-jobs --includes wptrunner_unittest; then
if ./wpt test-jobs --all --includes wptrunner_unittest; then
cd tools/wptrunner
run_applicable_tox
cd $WPT_ROOT
Expand Down
2 changes: 1 addition & 1 deletion tools/wpt/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ def _get_latest_chromium_revision(self):

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

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

0 comments on commit 67c181f

Please sign in to comment.