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
469 B
10 lines
469 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. |
|
if [ "$1" == "unit" ]; then |
|
TYPE="--type=IslandoraKernelTestBase" |
|
elif [ "$1" == "functional" ]; then |
|
TYPE="--type=IslandoraFunctionalTestBase,WebDriverTestBase" |
|
fi |
|
php core/scripts/run-tests.sh --suppress-deprecations --concurrency=2 --url http://127.0.0.1:8282 --verbose --php `which php` --module "$2" $TYPE
|
|
|