From 18661ceb634a6d3e727ea21d89fa56de1eff9e58 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu>
Date: Fri, 15 May 2015 16:38:21 +0200
Subject: [PATCH] do not execute integration tests when executing autotest.sh

---
 tests/apps.php | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/apps.php b/tests/apps.php
index 3e27b81df6..f13a996772 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] !== '.') {
-- 
GitLab