forked from django-webtest/django-webtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
46 lines (41 loc) · 1.13 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
language: python
python:
- "3.3"
- "3.2"
- "2.7"
- "2.6"
- "pypy"
env:
- DJANGO=">= 1.2, < 1.3"
- DJANGO=">= 1.3, < 1.4"
- DJANGO=">= 1.4, < 1.5"
- DJANGO=">= 1.5, < 1.6"
- DJANGO=""
matrix:
include:
- python: "2.7"
env: DJANGO=">= 1.5, < 1.6" OLD_WEBTEST=1
exclude:
- python: "3.2"
env: DJANGO=">= 1.2, < 1.3"
- python: "3.2"
env: DJANGO=">= 1.3, < 1.4"
- python: "3.2"
env: DJANGO=">= 1.4, < 1.5"
- python: "3.3"
env: DJANGO=">= 1.2, < 1.3"
- python: "3.3"
env: DJANGO=">= 1.3, < 1.4"
- python: "3.3"
env: DJANGO=">= 1.4, < 1.5"
- python: "pypy"
env: DJANGO=">= 1.2, < 1.3"
- python: "pypy"
env: DJANGO=">= 1.3, < 1.4"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install "django $DJANGO"
- if [[ $OLD_WEBTEST ]]; then pip install 'WebTest < 2.0'; else pip install WebTest; fi
- python setup.py install
# command to run tests, e.g. python setup.py test
script: python django_webtest_tests/runtests.py