forked from vinta/django.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
33 lines (33 loc) · 838 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
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
env:
- DJANGO='django>=1.4,<1.5'
- DJANGO='django>=1.5,<1.6'
- DJANGO='django>=1.6,<1.7'
- DJANGO='https://www.djangoproject.com/download/1.7c1/tarball/'
matrix:
exclude:
- python: 2.6
env: DJANGO='https://www.djangoproject.com/download/1.7c1/tarball/'
- python: 3.2
env: DJANGO='django>=1.4,<1.5'
- python: 3.3
env: DJANGO='django>=1.4,<1.5'
- python: 3.4
env: DJANGO='django>=1.4,<1.5'
allow_failures:
- env: DJANGO='https://www.djangoproject.com/download/1.7c1/tarball/'
- python: pypy
install:
- pip install $DJANGO
- pip install -r requirements/travis.pip
script:
- make coverage pep8
after_success:
- coveralls -c coverage.rc