From 38f4afb17cddadf54c21f569dfa558bc5c0bbb1f Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Tue, 5 Jun 2018 19:49:22 +0100 Subject: [PATCH] Make sure that test failures kill the build --- tests/travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/travis.sh b/tests/travis.sh index 27da47fd5..2ccbafcf1 100755 --- a/tests/travis.sh +++ b/tests/travis.sh @@ -23,7 +23,7 @@ fi #Run PHPUnit tests curl https://phar.phpunit.de/phpunit-7.phar --silent --location -o phpunit.phar -"$PHP_BINARY" phpunit.phar --bootstrap vendor/autoload.php tests/phpunit +"$PHP_BINARY" phpunit.phar --bootstrap vendor/autoload.php tests/phpunit || exit 1 #Run-the-server tests DATA_DIR="test_data"