forked from modlinltd/django-advanced-filters
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
47 lines (47 loc) · 1.04 KB
/
.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
language: python
sudo: false
cache: pip
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
matrix:
include:
- python: "2.6"
env: DJANGO="Django>=1.5,<1.6"
- python: "2.6"
env: DJANGO="Django>=1.6,<1.7"
- python: "3.4"
env: DJANGO="Django>=1.9,<1.10"
- python: "3.4"
env: DJANGO="Django>=1.10,<1.11"
- python: "3.5"
env: DJANGO="Django>=1.9,<1.10"
- python: "3.5"
env: DJANGO="Django>=1.10,<1.11"
exclude:
- python: "2.6"
- python: "3.3"
env: DJANGO="Django>=1.9,<1.10"
- python: "3.3"
env: DJANGO="Django>=1.10,<1.11"
- python: "3.4"
- python: "3.5"
env:
- DJANGO="Django>=1.5,<1.6"
- DJANGO="Django>=1.6,<1.7"
- DJANGO="Django>=1.7,<1.8"
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
install:
- pip install $DJANGO
- pip install -e .[test]
script:
- coverage run -m py.test advanced_filters
- pep8 --exclude=*urls.py --exclude=*migrations advanced_filters -v
after_success:
coveralls