We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b131d7 commit 57733c7Copy full SHA for 57733c7
.travis.yml
@@ -16,6 +16,9 @@ addons:
16
- postgresql-10
17
postgresql: 10
18
19
+before_script:
20
+ - psql -c "CREATE USER foo WITH PASSWORD 'bar';" -U postgres
21
+
22
script:
23
- cargo test -- --nocapture || travis_terminate 1
24
- docker build . -t wait_for_db || travis_terminate 1
@@ -26,8 +29,8 @@ env:
26
29
- ODBC_SYS_STATIC_PATH=/usr/lib/x86_64-linux-gnu/
27
30
- POSTGRES_SERVER=localhost
28
31
- POSTGRES_PORT=5432
- - POSTGRES_USERNAME=travis
- - POSTGRES_PASSWORD=travis
32
+ - POSTGRES_USERNAME=foo
33
+ - POSTGRES_PASSWORD=bar
34
- RUST_BACKTRACE=1
35
- POSTGRES_DRIVER=/usr/lib/x86_64-linux-gnu/odbc/psqlodbca.so
36
- SQLITE_DRIVER=/usr/lib/x86_64-linux-gnu/odbc/libsqlite3odbc.so
0 commit comments