django-rest-framework/.travis.yml

40 lines
1.1 KiB
YAML
Raw Normal View History

2012-09-07 16:32:52 +04:00
language: python
python:
2012-12-02 04:26:02 +04:00
- "2.6"
2012-09-07 16:32:52 +04:00
- "2.7"
2012-11-21 21:21:26 +04:00
- "3.2"
2013-02-01 19:07:51 +04:00
- "3.3"
2012-09-07 16:32:52 +04:00
env:
- DJANGO="django==1.6"
- DJANGO="django==1.5.5"
- DJANGO="django==1.4.10"
- DJANGO="django==1.3.7"
2012-09-07 16:32:52 +04:00
install:
2012-10-11 16:12:43 +04:00
- pip install $DJANGO
- pip install defusedxml==0.3
- "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install oauth2==1.5.211; fi"
- "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-oauth-plus==2.2.1; fi"
- "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-oauth2-provider==0.2.4; fi"
- "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-guardian==1.1.1; fi"
- "if [[ ${DJANGO::11} == 'django==1.3' ]]; then pip install django-filter==0.5.4; fi"
- "if [[ ${DJANGO::11} != 'django==1.3' ]]; then pip install django-filter==0.6; fi"
2012-10-11 16:12:43 +04:00
- export PYTHONPATH=.
2012-09-07 16:32:52 +04:00
script:
- python rest_framework/runtests/runtests.py
2012-11-23 04:22:39 +04:00
matrix:
exclude:
- python: "3.2"
2013-11-08 17:58:36 +04:00
env: DJANGO="django==1.4.10"
2012-11-23 04:22:39 +04:00
- python: "3.2"
env: DJANGO="django==1.3.7"
2013-02-01 19:07:51 +04:00
- python: "3.3"
2013-11-08 17:58:36 +04:00
env: DJANGO="django==1.4.10"
2013-02-01 19:07:51 +04:00
- python: "3.3"
env: DJANGO="django==1.3.7"