Browse Source

Don't break app on travis

tags/v9.0beta1
Thomas Müller 8 years ago
parent
commit
dddfa6de78
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      tests/lib/testcase.php

+ 5
- 0
tests/lib/testcase.php 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;

Loading…
Cancel
Save