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 31f1289 commit 220348eCopy full SHA for 220348e
.travis.yml
@@ -39,16 +39,16 @@ jobs:
39
40
- os: osx
41
osx_image: xcode11.2
42
- services:
43
- - postgresql
44
addons:
45
homebrew:
46
packages:
47
- psqlodbc
48
- sqliteodbc
+ - postgresql
49
env: SQLITE_DRIVER=/usr/local/opt/sqliteodbc/lib/libsqlite3odbc.dylib POSTGRES_DRIVER=/usr/local/opt/psqlodbc/lib/sqlodbca.so
50
before_script:
51
- - psql -c "CREATE USER foo WITH PASSWORD 'bar';" -U postgres
+ - pg_ctl -D /usr/local/var/postgres start
+ - psql postgres -c "CREATE USER foo WITH PASSWORD 'bar';"
52
- createdb -O foo foo
53
script:
54
- cargo test -- --nocapture || travis_terminate 1
0 commit comments