From: Jeremy Benoist Date: Mon, 29 Feb 2016 08:49:05 +0000 (+0100) Subject: Fix postgres database creation X-Git-Tag: 2.0.0-beta.1~4^2~2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=bb0efca468e764af1c0e5f5d29d442fc522854c0;p=github%2Fwallabag%2Fwallabag.git Fix postgres database creation Test database was renamed in https://github.com/wallabag/wallabag/pull/1639 but the travis configuration was missed --- diff --git a/.travis.yml b/.travis.yml index c6d371a5..db79baab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,7 +45,7 @@ before_script: - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi; - composer self-update --no-progress - if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi; - - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag;' -U postgres; fi; + - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag_test;' -U postgres; fi; before_install: - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi;