djangocms_blog/.travis.yml

36 lines
706 B
YAML
Raw Normal View History

2014-01-05 09:34:10 +00:00
# Config file for automatic testing at travis-ci.org
language: python
python:
- 3.3
- 3.4
2014-06-10 23:08:27 +00:00
- 2.7
- 2.6
env:
matrix:
- DJANGO='django>=1.5,<1.6'
- DJANGO='django>=1.6,<1.7'
2014-01-05 09:34:10 +00:00
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
2014-06-10 23:08:27 +00:00
install:
- pip install $DJANGO
- pip install -r requirements-test.txt
2014-01-05 09:34:10 +00:00
# command to run tests, e.g. python setup.py test
2014-06-10 23:08:27 +00:00
script: coverage run runtests.py
after_success: coveralls
matrix:
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
2014-06-10 23:08:27 +00:00
env: DJANGO='django>=1.6,<1.7'