aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-09-19 18:37:09 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-09-19 20:16:29 +0200
commit7ae7f7fd12154eb73e02ad0cd0877ac23eb41e8c (patch)
tree2a74e3373a962bc6c008afafe2e0ce885f2cd0e2 /tests/lib
parent75f5cb76300ca754f141573e76e029efb9369e51 (diff)
downloadnextcloud-server-7ae7f7fd12154eb73e02ad0cd0877ac23eb41e8c.tar.gz
nextcloud-server-7ae7f7fd12154eb73e02ad0cd0877ac23eb41e8c.zip
chore: Remove old travis related stuff
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/TestCase.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/lib/TestCase.php b/tests/lib/TestCase.php
index d74dacd76c1..cfed2b06c61 100644
--- a/tests/lib/TestCase.php
+++ b/tests/lib/TestCase.php
@@ -533,11 +533,6 @@ abstract class TestCase extends \PHPUnit\Framework\TestCase {
}
protected function IsDatabaseAccessAllowed() {
- // on travis-ci.org we allow database access in any case - otherwise
- // this will break all apps right away
- if (getenv('TRAVIS') == true) {
- return true;
- }
$annotations = $this->getGroupAnnotations();
if (isset($annotations)) {
if (in_array('DB', $annotations) || in_array('SLOWDB', $annotations)) {