Merge pull request #5552 from MrPetovan/bug/5405-prevent-database-erasure-during-test

Skip DB tests if MYSQL_* environment variables are missing
This commit is contained in:
Michael Vogel
2018-08-04 21:43:12 +02:00
committed by GitHub

View File

@@ -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.');
}