forked from lexlem/django-treemenus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
41 lines (41 loc) · 871 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
40
41
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- export PIP_INDEX_URL=https://simple.crate.io/
install:
- pip install https://github.com/django/django/zipball/stable/$DJANGO_VERSION.x --use-mirrors
- pip install -e .
script:
- make test
env:
- DJANGO_VERSION=1.1
- DJANGO_VERSION=1.2
- DJANGO_VERSION=1.3
- DJANGO_VERSION=1.4
- DJANGO_VERSION=1.5
- DJANGO_VERSION=1.6
branches:
only:
- master
matrix:
exclude:
- python: "3.2"
env: DJANGO_VERSION=1.1
- python: "3.2"
env: DJANGO_VERSION=1.2
- python: "3.2"
env: DJANGO_VERSION=1.3
- python: "3.2"
env: DJANGO_VERSION=1.4
- python: "3.3"
env: DJANGO_VERSION=1.1
- python: "3.3"
env: DJANGO_VERSION=1.2
- python: "3.3"
env: DJANGO_VERSION=1.3
- python: "3.3"
env: DJANGO_VERSION=1.4