Skip to content

Commit 45a894d

Browse files
authored
Test across more Python/PostgreSQL versions (#33)
1 parent a61bd8a commit 45a894d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.circleci/config.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ workflows:
33
version: 2
44
test:
55
jobs:
6-
- test-python3.5-postgres11
7-
- test-python3.6-postgres11
6+
- test-python3.5-postgres9
7+
- test-python3.6-postgres10
88
- test-python3.7-postgres11
9-
- test-python3.7-postgres12
9+
- test-python3.8-postgres12
1010
jobs:
11-
test-python3.5-postgres11: &test-template
11+
test-python3.5-postgres9: &test-template
1212
docker:
13-
- image: python:3.6
14-
- image: postgres:11
13+
- image: python:3.5
14+
- image: postgres:9
1515
environment: &postgres-environment
1616
POSTGRES_USER: test
1717
POSTGRES_PASSWORD: test
@@ -83,11 +83,11 @@ jobs:
8383
[[ $(jq -r .row.text < logs/client.log) == "Hello world" ]]
8484
- store_artifacts:
8585
path: logs
86-
test-python3.6-postgres11:
86+
test-python3.6-postgres10:
8787
<<: *test-template
8888
docker:
8989
- image: python:3.6
90-
- image: postgres:11
90+
- image: postgres:10
9191
environment:
9292
<<: *postgres-environment
9393
test-python3.7-postgres11:
@@ -97,10 +97,10 @@ jobs:
9797
- image: postgres:11
9898
environment:
9999
<<: *postgres-environment
100-
test-python3.7-postgres12:
100+
test-python3.8-postgres12:
101101
<<: *test-template
102102
docker:
103-
- image: python:3.7
103+
- image: python:3.8
104104
- image: postgres:12
105105
environment:
106106
<<: *postgres-environment

0 commit comments

Comments
 (0)