소스 검색

added travis config for both DRF2 and DRF3

Miroslav Shubernetskiy 10 년 전
부모
커밋
c4e0ab5630
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 7 1
      .travis.yml

+ 7 - 1
.travis.yml

@@ -5,8 +5,14 @@ python:
   - "2.7"
   - "pypy"
 
+env:
+  - "DRF='djangorestframework<3'"
+  - "DRF='djangorestframework>=3'"
+
 # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
-install: pip install -r requirements-dev.txt
+install:
+  - pip install $DRF
+  - pip install -r requirements-dev.txt
 
 # command to run tests, e.g. python setup.py test
 script: make check