From 9925db335ce7f01d8c781b9b23fad98316bf451d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu>
Date: Tue, 29 Jul 2014 08:34:55 +0200
Subject: [PATCH] execute unit test for files external in separate build config

---
 .travis.yml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 02876ee59d..c5d6c9655f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,11 +14,15 @@ matrix:
       env: DB=pgsql
     - php: 5.4
       env: DB=mysql
+    - php: 5.4
+      env: DB=mysql EXTERNAL=true
   allow_failures:
     - php: hhvm
   fast_finish: true
 
 env:
+  global:
+    - EXTERNAL=false
   matrix:
     - DB=sqlite
 
@@ -36,6 +40,11 @@ before_script:
   # call setup for tests
   - build/prepareTests.sh $DB
 
+  # Enable/disable files_external to control it's unit test execution
+  - php occ --list
+  - if [[ $EXTERNAL == true ]] ; then php occ app:enable files_external ; fi
+  - if [[ $EXTERNAL == false ]] ; then php occ app:disable files_external ; fi
+
 script:
   - phpunit --version
   # Run PHP lint for each PHP version
-- 
GitLab