Skip to content

Commit

Permalink
Removed tests for Python 3.3 again since Django has dropped support s…
Browse files Browse the repository at this point in the history
…tarting with 1.8
  • Loading branch information
holgerd77 authored and holgerd77 committed Feb 16, 2016
1 parent d2853cb commit cbe9781
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: python
python: 3.5
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
install:
- pip install -U tox
Expand Down
12 changes: 4 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27,py33,py34,py35
envlist = py27,py34,py35

[testenv]
deps =
Expand All @@ -13,16 +13,12 @@ deps =
commands =
py.test {posargs:tests}

[testenv:py33]
basepython = python3.3
[testenv:py34]
basepython = python3.4
deps =
-rrequirements-py3.txt
pytest

[testenv:py34]
basepython = python3.4
deps = {[testenv:py33]deps}

[testenv:py35]
basepython = python3.5
deps = {[testenv:py33]deps}
deps = {[testenv:py34]deps}

0 comments on commit cbe9781

Please sign in to comment.