summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2014-12-11 23:55:49 +0100
committerAndreas Gohr <andi@splitbrain.org>2014-12-11 23:55:49 +0100
commit998b0963abafd76df93b4faad0b54fe396e01abd (patch)
tree3ad870a84c1a10b3cf433bdf2793bcfc91277e1a /.travis.yml
parent1ec86040f8d873bffe71d0acacf7e9750804f0f4 (diff)
downloadrpg-998b0963abafd76df93b4faad0b54fe396e01abd.tar.gz
rpg-998b0963abafd76df93b4faad0b54fe396e01abd.tar.bz2
use phpunit 4.3.5 until bug is fixed
See here for upstream report: https://github.com/sebastianbergmann/phpunit/issues/1523
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 9c3193d19..b5953fd44 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,4 +14,7 @@ notifications:
- "chat.freenode.net#dokuwiki"
on_success: change
on_failure: change
-script: cd _test && phpunit --verbose --stderr
+install:
+ - wget https://phar.phpunit.de/phpunit-4.3.5.phar -O _test/phpunit
+ - chmod 755 _test/phpunit
+script: cd _test && ./phpunit --verbose --stderr