You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
326 B
10 lines
326 B
#!/bin/bash |
|
|
|
# Wrapper for the test executing function so we only have to change it in one place. |
|
# The module name gets passed in as a command line arg. |
|
LS="ls ../modules/contrib/islandora/tests/src/Kernel" |
|
echo "LS Command -> $LS" |
|
$LS |
|
COMMAND="$DRUPAL_DIR/vendor/bin/phpunit --verbose --testsuite $1" |
|
echo $COMMAND |
|
$COMMAND
|
|
|