We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f4c89 commit 2e630f0Copy full SHA for 2e630f0
tools/ci/ci_tools_unittest.sh
@@ -5,19 +5,6 @@ SCRIPT_DIR=$(cd $(dirname "$0") && pwd -P)
5
WPT_ROOT=$SCRIPT_DIR/../..
6
cd $WPT_ROOT
7
8
-run_applicable_tox () {
9
- # instead of just running TOXENV (e.g., py38)
10
- # run all environments that start with TOXENV
11
- # (e.g., py38-firefox as well as py38)
12
- local OLD_TOXENV="$TOXENV"
13
- unset TOXENV
14
- local RUN_ENVS=$(tox -l | grep "^${OLD_TOXENV}\(\-\|\$\)" | tr "\n" ",")
15
- if [[ -n "$RUN_ENVS" ]]; then
16
- tox -e "$RUN_ENVS"
17
- fi
18
- export TOXENV="$OLD_TOXENV"
19
-}
20
-
21
if ./wpt test-jobs --all --includes tools_unittest; then
22
pip install --user -U tox
23
cd tools
0 commit comments