mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2025-05-31 19:23:05 +03:00
Fix travis
This commit is contained in:
parent
ae9de722c6
commit
8c3ebc7e16
18
.travis.yml
18
.travis.yml
|
@ -86,18 +86,16 @@ install:
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
# Output software versions
|
# Output software versions
|
||||||
- cat /etc/postgresql/$PG/main/postgresql.conf | grep "port"
|
|
||||||
- service postgresql status
|
|
||||||
- clickhouse-client --query "SELECT version();"
|
- clickhouse-client --query "SELECT version();"
|
||||||
- psql -tc 'SHOW server_version' -U postgres
|
- psql -tc 'SHOW server_version'
|
||||||
|
|
||||||
- psql -tc 'SHOW server_version' -U postgres
|
- psql -tc 'SHOW server_version'
|
||||||
- psql -c 'CREATE ROLE test;' -U postgres
|
- psql -c 'CREATE ROLE test;'
|
||||||
- psql -c 'ALTER ROLE test WITH SUPERUSER;' -U postgres
|
- psql -c 'ALTER ROLE test WITH SUPERUSER;'
|
||||||
- psql -c 'ALTER ROLE test WITH LOGIN;' -U postgres
|
- psql -c 'ALTER ROLE test WITH LOGIN;'
|
||||||
- psql -c "ALTER ROLE test PASSWORD 'test';" -U postgres
|
- psql -c "ALTER ROLE test PASSWORD 'test';"
|
||||||
- psql -c 'CREATE DATABASE test OWNER test;' -U postgres
|
- psql -c 'CREATE DATABASE test OWNER test;'
|
||||||
- psql -c 'CREATE DATABASE test2 OWNER test;' -U postgres
|
- psql -c 'CREATE DATABASE test2 OWNER test;'
|
||||||
|
|
||||||
script:
|
script:
|
||||||
python runtests.py
|
python runtests.py
|
||||||
|
|
Loading…
Reference in New Issue
Block a user