Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Becker <halfdan@xnorfz.de>2013-02-07 15:06:42 +0400
committerFabian Becker <halfdan@xnorfz.de>2013-02-07 15:06:42 +0400
commit8fb7256b61422429c3cb0a3f490bffb8d0fe8e26 (patch)
treeeaffb1b0ca7b1a346365d617e71f3bd48c2c2c11 /.travis.yml
parentf99965d368ea9cbac42dd28ddfdfefb1bda12ba9 (diff)
We now use a testing matrix that matches three PHP versions
and three testsuites together. refs #3722
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 05fae49b97..3524595775 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,9 +6,19 @@ php:
- 5.4
- 5.3
-script: phpunit --configuration PHPUnit/phpunit.xml.dist
+env:
+ matrix:
+ - TEST_SUITE=PluginTests
+ - TEST_SUITE=CoreTests
+ - TEST_SUITE=IntegrationTests
+
+script: phpunit --configuration PHPUnit/phpunit.xml.dist --testsuite $TEST_SUITE
before_script:
- mysql -e 'create database piwik_test;'
- ./tests/PHPUnit/travis.sh
- cd tests
+
+matrix:
+ allow_failures:
+ - php: 5.5