Skip to content

Commit

Permalink
Fix reqs for tox, add DRF to envs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan P Kilby committed Sep 20, 2016
1 parent cff0b7c commit 69f6cf8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
- DJANGO="django>=1.8.0,<1.9.0" REST_FRAMEWORK="djangorestframework>=3.3,<3.4"

install:
- travis_retry pip install -Ur requirements/travis-ci.txt
- travis_retry pip install -Ur requirements/test-ci.txt
- travis_retry pip install $DJANGO $REST_FRAMEWORK

script:
Expand Down
File renamed without changes.
10 changes: 6 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist =
{py27,py33,py34,py35}-django18,
{py27,py34,py35}-django{19,110},
{py27,py34,py35}-django-latest
{py27,py33,py34,py35}-django18-restframework{33,34},
{py27,py34,py35}-django{19,110}-restframework34,
{py27,py34,py35}-django-latest-restframework34


[testenv]
Expand All @@ -21,4 +21,6 @@ deps =
django19: django>=1.9.0,<1.10.0
django110: django>=1.10.0,<1.11.0
django-latest: https://github.com/django/django/archive/master.tar.gz
-rrequirements/test.txt
restframework33: djangorestframework>=3.3,<3.4
restframework34: djangorestframework>=3.4,<3.5
-rrequirements/test-ci.txt

0 comments on commit 69f6cf8

Please sign in to comment.