Skip to content

Commit

Permalink
Add Django 1.8 to list of tested versions
Browse files Browse the repository at this point in the history
  • Loading branch information
crccheck committed Mar 18, 2015
1 parent a34b4e9 commit 62b221e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@ env:
- TOX_ENV=py33django17
- TOX_ENV=py34django16
- TOX_ENV=py34django17
- TOX_ENV=py27django18
- TOX_ENV=py33django18
- TOX_ENV=py34django18
install: "pip install tox"
script: tox -e $TOX_ENV
sudo: false
27 changes: 24 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ envlist =
py33django17,
py34django16,
py34django17,
py27django18,
py33django18,
py34django18,
downloadcache = {toxworkdir}/.cache
skipsdist = True

Expand Down Expand Up @@ -55,13 +58,13 @@ deps =
basepython=python2.7
deps =
{[testenv]deps}
Django>=1.6,<1.5
Django>=1.6,<1.7

[testenv:py33django16]
basepython=python3.3
deps =
{[testenv]deps}
Django>=1.6,<1.5
Django>=1.6,<1.7

[testenv:py27django17]
basepython=python2.7
Expand All @@ -79,10 +82,28 @@ deps =
basepython=python3.4
deps =
{[testenv]deps}
Django>=1.6,<1.5
Django>=1.6,<1.7

[testenv:py34django17]
basepython=python3.4
deps =
{[testenv]deps}
Django>=1.7,<1.8

[testenv:py27django18]
basepython=python2.7
deps =
{[testenv]deps}
Django==1.8b2

[testenv:py33django18]
basepython=python3.3
deps =
{[testenv]deps}
Django==1.8b2

[testenv:py34django18]
basepython=python3.4
deps =
{[testenv]deps}
Django==1.8b2

0 comments on commit 62b221e

Please sign in to comment.