blob: 800ba2413b4a81f98a5c32007aee207b96e720b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 
language: python
python:
  - "2.6"
  - "2.7"
env:
  - DJANGO=https://github.com/django/django/zipball/master
  - DJANGO=django==1.4.1 --use-mirrors
  - DJANGO=django==1.3.3 --use-mirrors
install:
  - pip install $DJANGO
  - pip install -r requirements.txt --use-mirrors
  - pip install -e git+https://github.com/alex/django-filter.git@0e4b3d703b31574922ab86fc78a86164aad0c1d0#egg=django-filter
  - export PYTHONPATH=.
script:
  - python rest_framework/runtests/runtests.py
 
  |