aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-07-18 09:46:32 +0200
committerAndreas Fischer <bantu@phpbb.com>2012-07-18 09:46:32 +0200
commitb176b86f111a05338ed3c74026bcf19d42ec0ee3 (patch)
tree84688d2ce5bee1ff77e87565d3d45f27136312ad
parenta3757763ac32be8261aab6e92b696e733e995c59 (diff)
parenteeef82ecc585caab1298f3559ccb8f615a89e706 (diff)
downloadforums-b176b86f111a05338ed3c74026bcf19d42ec0ee3.tar
forums-b176b86f111a05338ed3c74026bcf19d42ec0ee3.tar.gz
forums-b176b86f111a05338ed3c74026bcf19d42ec0ee3.tar.bz2
forums-b176b86f111a05338ed3c74026bcf19d42ec0ee3.tar.xz
forums-b176b86f111a05338ed3c74026bcf19d42ec0ee3.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/10996] Use correct DBMS name in Travis config for PostgreSQL
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 20c0c6bf4f..e2bedef32b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,8 +9,8 @@ env:
- DB=postgres
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' = 'postgres' ]; then psql -c 'DROP DATABASE IF EXISTS phpbb_tests;' -U postgres; fi"
+ - sh -c "if [ '$DB' = 'postgres' ]; 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"
- pyrus install --force phpunit/DbUnit
- phpenv rehash