forked from django-mptt/django-mptt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (30 loc) · 820 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
language: python
python:
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "2.6"
- "pypy"
env:
- DJANGO="Django>=1.4,<1.5"
- DJANGO="Django>=1.5,<1.6"
- DJANGO="Django>=1.6,<1.7"
- DJANGO="Django>=1.7,<1.8"
- DJANGO="https://www.djangoproject.com/download/1.8a1/tarball/"
matrix:
exclude:
- python: "3.4"
env: DJANGO="Django>=1.4,<1.5"
- python: "3.3"
env: DJANGO="Django>=1.4,<1.5"
- python: "3.2"
env: DJANGO="Django>=1.4,<1.5"
- python: "2.6"
env: DJANGO="Django>=1.7,<1.8"
- python: "2.6"
env: DJANGO="https://www.djangoproject.com/download/1.8a1/tarball/"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install $DJANGO
# command to run tests, e.g. python setup.py test
script: cd tests/ && ./runtests.sh