Skip DB tests if MYSQL_* environment variables are missing

This commit is contained in:
Hypolite Petovan 2018-08-04 16:35:31 +02:00
parent 810c108297
commit 5f48b98505
1 changed files with 4 additions and 0 deletions

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