forked from joke2k/django-environ
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
59 lines (53 loc) · 954 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
language: python
dist: xenial
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
- "pypy"
env:
- DJANGO="1.8"
- DJANGO="1.9"
- DJANGO="1.10"
- DJANGO="1.11"
- DJANGO="2.0"
- DJANGO="2.1"
- DJANGO="2.2"
- DJANGO="master"
matrix:
fast_finish: true
exclude:
- python: 2.7
env: DJANGO="2.0"
- python: 2.7
env: DJANGO="2.1"
- python: 2.7
env: DJANGO="master"
- python: 3.4
env: DJANGO="2.1"
- python: 3.4
env: DJANGO="master"
- python: 3.5
env: DJANGO="master"
allow_failures:
- env: DJANGO="master"
install:
# The default pip doesn't properly support pre-release version specifiers.
- pip install -U pip
- pip install tox
- pip install -q tox-travis
branches:
only:
- master
- develop
- /^feature\/.+/
- /^release\/.+/
- /^hotfix\/.+/
- /^v[\d\.]+/
script: tox
after_success:
- pip install --quiet python-coveralls
- coveralls