From d459a9b0da0c6676af3aac5d060cba1ceb7ae42e Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 20 Mar 2019 00:24:23 +0100 Subject: [PATCH] Some more fixes --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f6d7900509..bcf1602f0a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,12 +16,13 @@ env: before_install: + # - psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;" - psql -U postgres -c "CREATE DATABASE evennia;" - psql -U postgres -c "CREATE USER evennia WITH PASSWORD 'password';" - - psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;" + - psql -U postgres -c "ALTER USER evennia CREATEDB;" - mysql -u root -e "CREATE DATABASE evennia CHARACTER SET utf8;" - mysql -u root -e "CREATE USER 'evennia'@'localhost' IDENTIFIED BY 'password';" - - mysql -u root -e "GRANT ALL ON evennia.* TO 'evennia'@'localhost' IDENTIFIED BY 'password';" + - mysql -u root -e "GRANT ALL ON *.* TO 'evennia'@'localhost' IDENTIFIED BY 'password';" install: - pip install psycopg2-binary