From 5f48b985056867da8b758efe3fb9a17b63ed9bc8 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 4 Aug 2018 16:35:31 +0200 Subject: [PATCH] Skip DB tests if MYSQL_* environment variables are missing --- tests/DatabaseTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/DatabaseTest.php b/tests/DatabaseTest.php index 88cc2d84ba..9844699b06 100644 --- a/tests/DatabaseTest.php +++ b/tests/DatabaseTest.php @@ -32,6 +32,10 @@ abstract class DatabaseTest extends TestCase */ protected function getConnection() { + if (!getenv('MYSQL_DATABASE')) { + $this->markTestSkipped('Please set the MYSQL_* environment variables to your test database credentials.'); + } + if (!DBA::connected()) { $this->markTestSkipped('Could not connect to the database.'); }