]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fix postgres database creation
authorJeremy Benoist <jeremy.benoist@gmail.com>
Mon, 29 Feb 2016 08:49:05 +0000 (09:49 +0100)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Mon, 29 Feb 2016 08:49:50 +0000 (09:49 +0100)
Test database was renamed in https://github.com/wallabag/wallabag/pull/1639 but the travis configuration was missed

.travis.yml

index c6d371a50e3637bf4911c8894e7e6714211557d3..db79baabe17b93e2bdfab3d8f81130e9d66cc0c0 100644 (file)
@@ -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;