Fixing travis build.

This commit is contained in:
Dessalines 2019-12-28 16:24:57 -05:00
parent 786be3fa66
commit 3d9704f93b
1 changed files with 2 additions and 4 deletions

6
.travis.yml vendored
View 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"