forked from nephila/djangocms-page-meta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (34 loc) · 900 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
42
# Config file for automatic testing at travis-ci.org
language: python
python:
- 3.4
- 3.3
- 2.7
- 2.6
env:
matrix:
- DJANGO='django>=1.4,<1.5'
- DJANGO='django>=1.5,<1.6'
- DJANGO='django>=1.6,<1.7'
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install $DJANGO
- pip install -r requirements-test.txt
# command to run tests, e.g. python setup.py test
script: coverage run `which djangocms-helper` djangocms_page_meta test --cms --nose
after_success: coveralls
matrix:
exclude:
- python: 3.3
env: DJANGO='django>=1.4,<1.5'
- python: 3.4
env: DJANGO='django>=1.4,<1.5'
allow_failures:
- python: 3.3
env: DJANGO='django>=1.5,<1.6'
- python: 3.3
env: DJANGO='django>=1.6,<1.7'
- python: 3.4
env: DJANGO='django>=1.5,<1.6'
- python: 3.4
env: DJANGO='django>=1.6,<1.7'