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-03-09 20:53:27 +0400
committerFabian Becker <halfdan@xnorfz.de>2013-03-09 20:53:27 +0400
commitb177c111c7fe1f0ed445d8668c254100a0bb736b (patch)
tree5ce0008e828c813a18e7c90d54b6fb96488b518c /.travis.yml
parent44186f7579af70c69477be47d13c15c15614b6f4 (diff)
.travis.yml
-> Only run full suite in PHP 5.4 with coverage travis.sh -> Remove code coverage from tests with specific suite prepare.sh -> Use/Install xmlstarlet to rewrite phpunit.xml
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index f622ad3956..9d6623d395 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,17 +1,24 @@
language: php
-# We want to test against
+# We want to test against PHP 5.3/5.4/5.5
php:
- 5.5
- 5.4
- 5.3
+# Separate different test suites
env:
matrix:
- TEST_SUITE=PluginTests
- TEST_SUITE=CoreTests
- TEST_SUITE=IntegrationTests
- - TEST_SUITE=
+
+# Run PHP 5.4 for aa tests to generate
+# code coverage.
+matrix:
+ include:
+ - php: 5.4
+ env: TEST_SUITE=
script: ./travis.sh