summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Holywell <[email protected]>2018-01-04 15:52:26 +1000
committerSimon Holywell <[email protected]>2018-01-04 15:52:26 +1000
commit8f7cbd7744ad9827077918a8cddd3c4460c47783 (patch)
treedd9aa78d3e2ad601fbff1061686f7b1a5d7c36ee
parent6232d7fc181d6faee8891d5a195dd9783b1eda82 (diff)
attempt to get php5.2 testing working again
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 7bfbe18..ac024ea 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,7 +20,7 @@ before_script: |
# special handling for PHP 5.2 testing as there is no composer available
export X="$HOME/.idiorm/bin"
mkdir -p "$X"
- curl -sSfL https://phar.phpunit.de/phpunit-3.phar -o "$X/phpunit"
+ curl -sSfL https://github.com/treffynnon/php5.2-phpunit3.6.12-phar/releases/download/latest/php52-phpunit.phar -o "$X/phpunit"
chmod +x "$X/phpunit"
fi
script: |
@@ -29,6 +29,6 @@ script: |
else
# special handling for PHP 5.2 testing as there is no composer available
# we need phpunit-3.6.12, but there is no phar file for it so comment out for now
- # $X/phpunit --colors --coverage-text
- echo "we need phpunit-3.6.12, but there is no phar file for it so comment out for now"
+ $X/phpunit --colors --coverage-text
+ # echo "we need phpunit-3.6.12, but there is no phar file for it so comment out for now"
fi