Skip to content
Snippets Groups Projects
Commit 9925db33 authored by Thomas Müller's avatar Thomas Müller Committed by Morris Jobke
Browse files

execute unit test for files external in separate build config

parent e15b4d08
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment