mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Skip DB tests if MYSQL_* environment variables are missing
This commit is contained in:
parent
810c108297
commit
5f48b98505
1 changed files with 4 additions and 0 deletions
|
@ -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.');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue