aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Frèrejean <erikfrerejean@phpbb.com>2012-05-04 00:13:27 +0200
committerErik Frèrejean <erikfrerejean@phpbb.com>2012-05-04 00:13:27 +0200
commit0e906f2575892d25a359f3ad8020e8f66b91054d (patch)
tree98d074b3604a5c1d5d6b924ced5dc5c6efd382e4
parent7426c7a97f690ad3cac78b384e97e21cda47c40d (diff)
downloadforums-0e906f2575892d25a359f3ad8020e8f66b91054d.tar
forums-0e906f2575892d25a359f3ad8020e8f66b91054d.tar.gz
forums-0e906f2575892d25a359f3ad8020e8f66b91054d.tar.bz2
forums-0e906f2575892d25a359f3ad8020e8f66b91054d.tar.xz
forums-0e906f2575892d25a359f3ad8020e8f66b91054d.zip
[task/10869] Remove PHP 5.2 check from .travis.yml
The travis configuration file contains a statement that checks whether the test is ran against PHP 5.2 but as that version isn't tested at all the check can be removed. PHPBB3-10869
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 82f7d27e35..cc2383de57 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,7 +11,7 @@ before_script:
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS phpbb_tests;' -U postgres; fi"
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'create database phpbb_tests;' -U postgres; fi"
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database IF NOT EXISTS phpbb_tests;'; fi"
- - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then pear install --force phpunit/DbUnit; else pyrus install --force phpunit/DbUnit; fi"
+ - pyrus install --force phpunit/DbUnit
- phpenv rehash
- cd phpBB
- curl -s http://getcomposer.org/installer | php