forked from django-cms/django-filer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
25 lines (25 loc) · 1.15 KB
/
.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
language: python
python:
- 2.6
- 2.7
install:
- ./.travis_setup
env:
- DJANGO="django>=1.3,<1.4" POLYMORPHIC="django_polymorphic<=0.4.0" EASY_THUMBNAILS="easy-thumbnails<1.2" MPTT="django-mptt<0.6"
- DJANGO="django>=1.4,<1.5"
- DJANGO="django>=1.5,<1.6" EASY_THUMBNAILS="easy-thumbnails>=1.2"
- DJANGO="https://github.com/django/django/archive/stable/1.6.x.zip" 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:
allow_failures:
- python: 2.6
env: DJANGO="https://github.com/django/django/archive/stable/1.6.x.zip" EASY_THUMBNAILS="easy-thumbnails>=1.4"
- python: 2.6
env: DJANGO="https://github.com/django/django/archive/master.zip" EASY_THUMBNAILS="easy-thumbnails>=1.4"
- python: 2.7
env: DJANGO="https://github.com/django/django/archive/stable/1.6.x.zip" EASY_THUMBNAILS="easy-thumbnails>=1.4"
- python: 2.7
env: DJANGO="https://github.com/django/django/archive/master.zip" EASY_THUMBNAILS="easy-thumbnails>=1.4"