forked from django-cms/django-filer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
26 lines (26 loc) · 943 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
language: python
python:
- 2.6
- 2.7
- 3.3
install:
- ./.travis_setup
env:
- DJANGO="django>=1.4,<1.5"
- DJANGO="django>=1.5,<1.6" EASY_THUMBNAILS="easy-thumbnails>=1.2"
- DJANGO="django>=1.6,<1.7" EASY_THUMBNAILS="easy-thumbnails>=1.4"
- DJANGO="https://github.com/django/django/archive/master.zip" EASY_THUMBNAILS="easy-thumbnails>=1.4"
script: coverage run --rcfile=coverage.rc setup.py test
after_success:
coveralls --config_file=coverage.rc
matrix:
exclude:
- python: 2.6
env: DJANGO="https://github.com/django/django/archive/master.zip" EASY_THUMBNAILS="easy-thumbnails>=1.4"
- python: 3.3
env: DJANGO="django>=1.4,<1.5"
allow_failures:
- python: 2.7
env: DJANGO="https://github.com/django/django/archive/master.zip" EASY_THUMBNAILS="easy-thumbnails>=1.4"
- python: 3.3
env: DJANGO="https://github.com/django/django/archive/master.zip" EASY_THUMBNAILS="easy-thumbnails>=1.4"