Auto status change to "Under Review"
Show More
@@ -11,11 +11,11 b' matrix:' | |||
|
11 | 11 | - python: 3.5 |
|
12 | 12 | env: TOXENV=py35 |
|
13 | 13 | - python: 3.6 |
|
14 | env: TOXENV=py36 DB_STRING="postgres://postgres@127.0.0.1:5432/appenlight_test" DB=postgres | |
|
14 | env: TOXENV=py36 | |
|
15 | 15 | addons: |
|
16 | 16 | postgresql: "9.6" |
|
17 | 17 | - python: 3.6 |
|
18 | env: TOXENV=py36 BCRYPT="enabled" DB_STRING="postgres://postgres@127.0.0.1:5432/appenlight_test" DB=postgres PGPORT=5432 | |
|
18 | env: TOXENV=py36 PGPORT=5432 | |
|
19 | 19 | addons: |
|
20 | 20 | postgresql: "10" |
|
21 | 21 | apt: |
@@ -31,11 +31,12 b' script:' | |||
|
31 | 31 | |
|
32 | 32 | services: |
|
33 | 33 | - postgresql |
|
34 | ||
|
35 | ||
|
34 | - elasticsearch | |
|
35 | - redis | |
|
36 | 36 | |
|
37 | 37 | before_script: |
|
38 | - sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'create database appenlight_test;' -U postgres; fi" | |
|
38 | - psql -c "create user test with encrypted password 'test';" -U postgres | |
|
39 | - psql -c 'create database appenlight_test owner test;' -U postgres | |
|
39 | 40 | |
|
40 | 41 | after_success: |
|
41 | 42 | - pip install coveralls |
General Comments 3
You need to be logged in to leave comments.
Login now