Skip to content

Commit

Permalink
DO NOT MERGE: run ./wpt test-jobs --all to see if it passes
Browse files Browse the repository at this point in the history
  • Loading branch information
foolip authored and jcscottiii committed Mar 3, 2023
1 parent 5ec9bc9 commit 8891404
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,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

0 comments on commit 8891404

Please sign in to comment.