]> Untitled Git - lemmy.git/commitdiff
Fixing travis build.
authorDessalines <tyhou13@gmx.com>
Sat, 28 Dec 2019 21:24:57 +0000 (16:24 -0500)
committerDessalines <tyhou13@gmx.com>
Sat, 28 Dec 2019 21:24:57 +0000 (16:24 -0500)
.travis.yml

index 5fc26cdeb88d76b5acfe18e625d4fac919c572b6..100ff7a675b5fdde4a758b5dbda29d54704b5761 100644 (file)
@@ -11,15 +11,13 @@ cache:
 before_cache:
   - rm -rf /home/travis/.cargo/registry
 before_script:
-  - psql -c "create user rrr with password 'rrr' superuser;" -U postgres
-  - psql -c 'create database rrr with owner rrr;' -U postgres
+  - psql -c "create user lemmy with password 'password' superuser;" -U postgres
+  - psql -c 'create database lemmy with owner lemmy;' -U postgres
 before_install:
   - cd server
 script:
   - diesel migration run
   - cargo build
   - cargo test
-env:
-  - DATABASE_URL=postgres://rrr:rrr@localhost/rrr
 addons:
   postgresql: "9.4"