forked from feincms/form-designer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
27 lines (27 loc) · 777 Bytes
/
.travis.yml
File metadata and controls
27 lines (27 loc) · 777 Bytes
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
language: python
python:
- "3.3"
- "2.7"
- "2.6"
env:
- DJANGO=1.4.10 FEINCMS=1.8.0
- DJANGO=1.5.5 FEINCMS=1.8.0
- DJANGO=1.6 FEINCMS=1.8.0
- DJANGO=1.4.10 FEINCMS=1.9.0
- DJANGO=1.5.5 FEINCMS=1.9.0
- DJANGO=1.6 FEINCMS=1.9.0
- DJANGO=1.7 FEINCMS=1.10.1
matrix:
exclude:
- python: "3.3"
env: DJANGO=1.4.10 FEINCMS=1.8.0
- python: "3.3"
env: DJANGO=1.4.10 FEINCMS=1.9.0
- python: "2.6"
env: DJANGO=1.7 FEINCMS=1.10.1
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -q Django==$DJANGO FeinCMS==$FEINCMS django-mptt==0.6.0 --use-mirrors
- python setup.py -q install
# command to run tests, e.g. python setup.py test
script: "cd tests && ./manage.py test testapp"