Don't break app on travis

This commit is contained in:
Thomas Müller 2015-11-30 10:52:52 +01:00
parent 318e5e2864
commit dddfa6de78
1 changed files with 5 additions and 0 deletions

View File

@ -338,6 +338,11 @@ abstract class TestCase extends \PHPUnit_Framework_TestCase {
}
private function IsDatabaseAccessAllowed() {
// on travis-ci.org we allow database access in any case - otherwise
// this will break all apps right away
if (true == getenv('TRAVIS')) {
return true;
}
$annotations = $this->getAnnotations();
if (isset($annotations['class']['group']) && in_array('DB', $annotations['class']['group'])) {
return true;