forked from Archmonger/django-dbbackup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
48 lines (42 loc) · 806 Bytes
/
.travis.yml
File metadata and controls
48 lines (42 loc) · 806 Bytes
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
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
env:
matrix:
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
install:
- TOX_ENV=py${TRAVIS_PYTHON_VERSION}-django${DJANGO}
- pip install 'virtualenv<14.0.0' tox coveralls
- tox -e $TOX_ENV --notest
script:
- tox -e $TOX_ENV
after_success:
- tox -e $TOX_ENV -- coveralls $COVERALLS_OPTION
matrix:
include:
# - python: "3.4"
# TOX_ENV=lint
- python: "3.4"
env: ENV=docs
install: pip install tox
script: tox -e docs
exclude:
- python: "3.5"
env: DJANGO=1.6
- python: "3.5"
env: DJANGO=1.7
- python: "3.2"
env: DJANGO=1.9
- python: "3.3"
env: DJANGO=1.9
- python: "pypy3"
env: DJANGO=1.9