From 3fb3343d1d9eef2a79829e287e9d6273057c1752 Mon Sep 17 00:00:00 2001 From: Jared Whiklo Date: Wed, 14 Oct 2020 13:35:15 -0500 Subject: [PATCH] Fix setting concurrency --- .scripts/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/run-tests.sh b/.scripts/run-tests.sh index e4fa8f7c..1f337c7f 100755 --- a/.scripts/run-tests.sh +++ b/.scripts/run-tests.sh @@ -7,4 +7,4 @@ if [ "$1" == "unit" ]; then 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 +php core/scripts/run-tests.sh --suppress-deprecations --concurrency 2 --url http://127.0.0.1:8282 --verbose --php `which php` --module "$2" $TYPE