2014-01-05 09:34:10 +00:00
|
|
|
# Config file for automatic testing at travis-ci.org
|
|
|
|
|
|
|
|
language: python
|
|
|
|
|
|
|
|
python:
|
2014-06-11 11:02:42 +00:00
|
|
|
- 3.3
|
|
|
|
- 3.4
|
2014-06-10 23:08:27 +00:00
|
|
|
- 2.7
|
|
|
|
- 2.6
|
|
|
|
|
|
|
|
env:
|
|
|
|
matrix:
|
2014-08-13 20:55:42 +00:00
|
|
|
- DJANGO='django>=1.5,<1.6' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
|
|
|
- DJANGO='django>=1.6,<1.7' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
2014-10-11 07:15:11 +00:00
|
|
|
- DJANGO='django>=1.7,<1.8' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
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-08-13 20:55:42 +00:00
|
|
|
script: djangocms-helper djangocms_blog test --cms --nose-runner
|
2014-06-10 23:08:27 +00:00
|
|
|
|
|
|
|
after_success: coveralls
|
|
|
|
|
|
|
|
matrix:
|
2014-10-11 07:15:11 +00:00
|
|
|
exclude:
|
|
|
|
- python: 2.6
|
|
|
|
env: DJANGO='django>=1.7,<1.8' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
2014-06-10 23:08:27 +00:00
|
|
|
|
|
|
|
allow_failures:
|
|
|
|
- python: 3.3
|
2014-08-13 20:55:42 +00:00
|
|
|
env: DJANGO='django>=1.5,<1.6' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
2014-06-10 23:08:27 +00:00
|
|
|
- python: 3.3
|
2014-08-13 20:55:42 +00:00
|
|
|
env: DJANGO='django>=1.6,<1.7' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
2014-10-11 07:15:11 +00:00
|
|
|
- python: 3.3
|
|
|
|
end: DJANGO='django>=1.7,<1.8' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
2014-06-11 11:02:42 +00:00
|
|
|
- python: 3.4
|
2014-08-13 20:55:42 +00:00
|
|
|
env: DJANGO='django>=1.5,<1.6' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
2014-06-11 11:02:42 +00:00
|
|
|
- python: 3.4
|
2014-08-13 20:55:42 +00:00
|
|
|
env: DJANGO='django>=1.6,<1.7' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|
2014-10-11 07:15:11 +00:00
|
|
|
- python: 3.4
|
2014-12-05 20:17:17 +00:00
|
|
|
env: DJANGO='django>=1.7,<1.8' NOSE_COVER_PACKAGE="djangocms_blog" NOSE_WITH_COVERAGE=1
|