Skip to content

Commit

Permalink
Merge pull request #22204 from totten/master-mixin-testall
Browse files Browse the repository at this point in the history
tools/mixin/bin/test-all - Fix guard for EXT_DIR
  • Loading branch information
totten authored Dec 2, 2021
2 parents e1092ab + 8ef5a29 commit 1d041a1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/mixin/bin/test-all
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ function absdirname() {
}

SCRIPT_DIR=$(absdirname "$0")
EXT_DIR=$(cv path -c extensionsDir)/example-mixin
EXT_DIR=$(cv path -c extensionsDir)
EX_EXT_DIR="$EXT_DIR/example-mixin"
JUNIT_DIR="$1"

## TODO: Once the managed-entity regression is examined/fixed, remove the MY_MIXINS list. Then it will test all mixins.
Expand All @@ -34,7 +35,7 @@ function mixer_test() {
cv flush

## usage: mixer test [-f] [--bare] [--isolate] <temp-ext-path> [<mixin-names>...] -- [<phpunit-options>...]
"$SCRIPT_DIR/mixer" test -f "$EXT_DIR" "$@" -- --group e2e --log-junit "$JUNIT_DIR/$XML_FILE"
"$SCRIPT_DIR/mixer" test -f "$EX_EXT_DIR" "$@" -- --group e2e --log-junit "$JUNIT_DIR/$XML_FILE"
}

###############################################################################
Expand Down

0 comments on commit 1d041a1

Please sign in to comment.