forked from mx-moth/django-enumchoicefield
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
34 lines (31 loc) · 777 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
language: python
cache: pip
matrix:
include:
- env: TOXENV="py27-dj{18,19,110,111}"
python: '2.7'
- env: TOXENV="py34-dj{18,19,110,111,20}"
python: '3.4'
- env: TOXENV="py35-dj{18,19,110,111,20}"
python: '3.5'
- env: TOXENV="py36-dj{18,19,110,111,20}"
python: '3.6'
- env: |
TOXENV="py36-dj{111,20}-postgres"
DATABASE_URL="postgres://postgres@localhost/database"
python: '3.6'
services:
- postgresql
- env: |
TOXENV="py36-dj{111,20}-mysql"
DATABASE_URL="mysql://[email protected]/database"
python: '3.6'
services:
- mysql
- env: TOXENV="flake8,isort,docs"
python: '3.6'
install:
- pip install --upgrade pip wheel tox
script:
- env
- tox