do not execute integration tests when executing autotest.sh

This commit is contained in:
Thomas Müller 2015-05-15 16:38:21 +02:00
parent 9b6a988926
commit 18661ceb63
1 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,9 @@
*/
function loadDirectory($path) {
if (strpos($path, 'integration')) {
return;
}
if ($dh = opendir($path)) {
while ($name = readdir($dh)) {
if ($name[0] !== '.') {