summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDavid <ottodavid@gmx.net>2014-08-05 22:44:51 +0200
committerDavid <ottodavid@gmx.net>2014-08-05 23:39:15 +0200
commitb682cf8ede7f60d770d39b1d48e6f15fd796774b (patch)
tree8903d4d394beb472912d209a1e78a7ad20e7d2c2 /.travis.yml
parent891ed122447ca88938b150da9858d6d4c271d020 (diff)
Disable coverage measurement for PHP 5.3 tests
In order to avoid segfaulting tests
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index f9d65a82..b6badb3d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,10 +9,9 @@ before_script:
- composer self-update
- composer install --prefer-source --dev
- export PATH=./bin/:$PATH
- - phpenv config-add travis.php.ini
script:
- - ./bin/phing coverage
+ - bash -c 'if [ "$TRAVIS_PHP_VERSION" == "5.3" ]; then phing test; else phing coverage ; fi;'
after_script:
- - php ./bin/coveralls -v \ No newline at end of file
+ - php ./bin/coveralls -v