diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-02-29 09:49:05 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-02-29 09:49:50 +0100 |
commit | bb0efca468e764af1c0e5f5d29d442fc522854c0 (patch) | |
tree | 067e1b536d15412017be809f4b34c8c60c599730 /.travis.yml | |
parent | a19a371ae7f87003dd3ff4ece57ff4a514b2d3fe (diff) | |
download | wallabag-bb0efca468e764af1c0e5f5d29d442fc522854c0.tar.gz wallabag-bb0efca468e764af1c0e5f5d29d442fc522854c0.tar.zst wallabag-bb0efca468e764af1c0e5f5d29d442fc522854c0.zip |
Fix postgres database creation
Test database was renamed in https://github.com/wallabag/wallabag/pull/1639 but the travis configuration was missed
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c6d371a5..db79baab 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -45,7 +45,7 @@ before_script: | |||
45 | - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi; | 45 | - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi; |
46 | - composer self-update --no-progress | 46 | - composer self-update --no-progress |
47 | - if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi; | 47 | - if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi; |
48 | - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag;' -U postgres; fi; | 48 | - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag_test;' -U postgres; fi; |
49 | 49 | ||
50 | before_install: | 50 | before_install: |
51 | - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi; | 51 | - if [[ $TRAVIS_REPO_SLUG = wallabag/wallabag ]]; then cp .composer-auth.json ~/.composer/auth.json; fi; |