django-rest-framework/.travis.yml

37 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:
2013-02-28 01:14:40 +04:00
- DJANGO="django==1.5 --use-mirrors"
- DJANGO="django==1.4.3 --use-mirrors"
- DJANGO="django==1.3.5 --use-mirrors"
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
2013-03-07 13:01:53 +04:00
- "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install oauth2==1.5.211 --use-mirrors; fi"
- "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-oauth-plus==2.0 --use-mirrors; fi"
- "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-oauth2-provider==0.2.3 --use-mirrors; fi"
- "if [[ ${DJANGO::11} == 'django==1.3' ]]; then pip install django-filter==0.5.4 --use-mirrors; fi"
- "if [[ ${DJANGO::11} != 'django==1.3' ]]; then pip install django-filter==0.6a1 --use-mirrors; 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"
env: DJANGO="django==1.4.3 --use-mirrors"
2012-11-23 04:22:39 +04:00
- python: "3.2"
env: DJANGO="django==1.3.5 --use-mirrors"
2013-02-01 19:07:51 +04:00
- python: "3.3"
env: DJANGO="django==1.4.3 --use-mirrors"
- python: "3.3"
env: DJANGO="django==1.3.5 --use-mirrors"