blob: 0dc878373d9a941c480e202bb1ad9329d6874699 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
language: python
python:
  - "2.6"
  - "2.7"
env:
  - DJANGO=https://github.com/django/django/zipball/master
  - DJANGO=django==1.4.3 --use-mirrors
  - DJANGO=django==1.3.5 --use-mirrors
install:
  - pip install $DJANGO
  - pip install django-filter==0.5.4 --use-mirrors
  - export PYTHONPATH=.
script:
  - python rest_framework/runtests/runtests.py
 
  |