diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-15 16:38:21 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-15 16:38:21 +0200 |
commit | 18661ceb634a6d3e727ea21d89fa56de1eff9e58 (patch) | |
tree | 0d9ebc6d1dd61c0634f54cdaffa624b8b0760dc2 /tests | |
parent | 9b6a9889269185c4bebee78d2727fbad740bbaee (diff) | |
download | nextcloud-server-18661ceb634a6d3e727ea21d89fa56de1eff9e58.tar.gz nextcloud-server-18661ceb634a6d3e727ea21d89fa56de1eff9e58.zip |
do not execute integration tests when executing autotest.sh
Diffstat (limited to 'tests')
-rw-r--r-- | tests/apps.php | 3 |
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] !== '.') { |