forked from django-webtest/django-webtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
45 lines (40 loc) · 1.1 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
language: python
python:
- "3.3"
- "3.2"
- "2.7"
- "2.6"
- "pypy"
env:
- DJANGO_VERSION=1.2.7
- DJANGO_VERSION=1.3.7
- DJANGO_VERSION=1.4.5
- DJANGO_VERSION=1.5
matrix:
include:
- python: "2.7"
env: DJANGO_VERSION=1.5 OLD_WEBTEST=1
exclude:
- python: "3.2"
env: DJANGO_VERSION=1.2.7
- python: "3.2"
env: DJANGO_VERSION=1.3.7
- python: "3.2"
env: DJANGO_VERSION=1.4.5
- python: "3.3"
env: DJANGO_VERSION=1.2.7
- python: "3.3"
env: DJANGO_VERSION=1.3.7
- python: "3.3"
env: DJANGO_VERSION=1.4.5
- python: "pypy"
env: DJANGO_VERSION=1.2.7
- python: "pypy"
env: DJANGO_VERSION=1.3.7
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install django==$DJANGO_VERSION
- 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