Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-05-15 17:38:21 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2015-05-15 17:38:21 +0300
commit18661ceb634a6d3e727ea21d89fa56de1eff9e58 (patch)
tree0d9ebc6d1dd61c0634f54cdaffa624b8b0760dc2 /tests/apps.php
parent9b6a9889269185c4bebee78d2727fbad740bbaee (diff)
do not execute integration tests when executing autotest.sh
Diffstat (limited to 'tests/apps.php')
-rw-r--r--tests/apps.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/apps.php b/tests/apps.php
index 3e27b81df61..f13a996772f 100644
--- a/tests/apps.php
+++ b/tests/apps.php
@@ -7,6 +7,9 @@
*/
function loadDirectory($path) {
+ if (strpos($path, 'integration')) {
+ return;
+ }
if ($dh = opendir($path)) {
while ($name = readdir($dh)) {
if ($name[0] !== '.') {