forked from carltongibson/django-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
40 lines (33 loc) · 875 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
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO=https://github.com/django/django/archive/master.tar.gz
- DJANGO=https://github.com/django/django/archive/stable/1.7.x.tar.gz
- DJANGO=django==1.6.5
- DJANGO=django==1.5.8
- DJANGO=django==1.4.13
install:
- pip install $DJANGO
- pip install -r requirements/travis-ci.txt --use-mirrors
script:
- coverage run --source django_filters runtests.py
- coverage report
notifications:
email: false
matrix:
exclude:
- python: "3.2"
env: DJANGO=django==1.4.13
- python: "3.3"
env: DJANGO=django==1.4.13
- python: "3.4"
env: DJANGO=django==1.4.13
- python: "2.6"
env: DJANGO=https://github.com/django/django/archive/stable/1.7.x.tar.gz
- python: "2.6"
env: DJANGO=https://github.com/django/django/archive/master.tar.gz