forked from altaurog/pgcopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (43 loc) · 960 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
sudo: required
language: python
matrix:
include:
- python: 2.7
dist: precise
env: TOXENV=py27
addons:
postgresql: "9.4"
- python: 2.7
dist: bionic
env: TOXENV=py27
addons:
postgresql: "11"
- python: 3.6
dist: trusty
env: TOXENV=py36
addons:
postgresql: "9.5"
- python: 3.7
dist: bionic
env: TOXENV=py37
addons:
postgresql: "10"
- python: 3.7
dist: bionic
env: TOXENV=py37,coverage
addons:
postgresql: "11"
- python: 3.7
dist: focal
env: TOXENV=py37
addons:
postgresql: "13"
- python: 3.8
dist: bionic
env: TOXENV=py38
addons:
postgresql: "11"
install:
- pip install tox
script:
- tox