From 118dc7339ce75d154d75284f0eef49860708d80e Mon Sep 17 00:00:00 2001 From: Zach Borboa Date: Sat, 13 Mar 2021 20:09:20 -0500 Subject: [PATCH] Fix phpunit configuration path when inside script directory --- tests/script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/script.sh b/tests/script.sh index adff38a..eb5e214 100755 --- a/tests/script.sh +++ b/tests/script.sh @@ -15,7 +15,7 @@ export PHP_CURL_CLASS_TEST_MODE_ENABLED="yes" # Run tests. phpunit --version -phpunit --configuration "tests/phpunit.xml" --debug --verbose +phpunit --configuration "phpunit.xml" --debug --verbose if [[ "${?}" -ne 0 ]]; then echo "Error: phpunit command failed" ((errors++))