Skip to content

Commit

Permalink
Test with 3.5 too.
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Aug 20, 2016
1 parent a8dce18 commit b3507ed
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .travis.yml
Expand Up @@ -53,6 +53,18 @@ env:
- TOXENV=3.4-1.8-nocover
- TOXENV=3.4-1.9,coveralls,codecov
- TOXENV=3.4-1.9-nocover
- TOXENV=3.5-1.10,coveralls,codecov
- TOXENV=3.5-1.10-nocover
- TOXENV=3.5-1.5,coveralls,codecov
- TOXENV=3.5-1.5-nocover
- TOXENV=3.5-1.6,coveralls,codecov
- TOXENV=3.5-1.6-nocover
- TOXENV=3.5-1.7,coveralls,codecov
- TOXENV=3.5-1.7-nocover
- TOXENV=3.5-1.8,coveralls,codecov
- TOXENV=3.5-1.8-nocover
- TOXENV=3.5-1.9,coveralls,codecov
- TOXENV=3.5-1.9-nocover
before_install:
- python --version
- uname -a
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -64,6 +64,7 @@ python_versions =
2.7
3.3
3.4
3.5

dependencies =
1.4: uWSGI Django==1.4.22 !python_versions[3.*]
Expand Down
138 changes: 138 additions & 0 deletions tox.ini
Expand Up @@ -46,6 +46,18 @@ envlist =
3.4-1.8-nocover,
3.4-1.9,
3.4-1.9-nocover,
3.5-1.10,
3.5-1.10-nocover,
3.5-1.5,
3.5-1.5-nocover,
3.5-1.6,
3.5-1.6-nocover,
3.5-1.7,
3.5-1.7-nocover,
3.5-1.8,
3.5-1.8-nocover,
3.5-1.9,
3.5-1.9-nocover,
report,
docs

Expand Down Expand Up @@ -609,5 +621,131 @@ deps =
uWSGI
Django==1.9.9

[testenv:3.5-1.10]
basepython = {env:TOXPYTHON:python3.5}
setenv =
{[testenv]setenv}
WITH_COVERAGE=yes
usedevelop = true
commands =
{posargs:py.test --cov --cov-report=term-missing -vv}
deps =
{[testenv]deps}
pytest-cov
uWSGI
Django==1.10

[testenv:3.5-1.10-nocover]
basepython = {env:TOXPYTHON:python3.5}
deps =
{[testenv]deps}
uWSGI
Django==1.10

[testenv:3.5-1.5]
basepython = {env:TOXPYTHON:python3.5}
setenv =
{[testenv]setenv}
WITH_COVERAGE=yes
usedevelop = true
commands =
{posargs:py.test --cov --cov-report=term-missing -vv}
deps =
{[testenv]deps}
pytest-cov
uWSGI
Django==1.5.12

[testenv:3.5-1.5-nocover]
basepython = {env:TOXPYTHON:python3.5}
deps =
{[testenv]deps}
uWSGI
Django==1.5.12

[testenv:3.5-1.6]
basepython = {env:TOXPYTHON:python3.5}
setenv =
{[testenv]setenv}
WITH_COVERAGE=yes
usedevelop = true
commands =
{posargs:py.test --cov --cov-report=term-missing -vv}
deps =
{[testenv]deps}
pytest-cov
uWSGI
Django==1.6.11

[testenv:3.5-1.6-nocover]
basepython = {env:TOXPYTHON:python3.5}
deps =
{[testenv]deps}
uWSGI
Django==1.6.11

[testenv:3.5-1.7]
basepython = {env:TOXPYTHON:python3.5}
setenv =
{[testenv]setenv}
WITH_COVERAGE=yes
usedevelop = true
commands =
{posargs:py.test --cov --cov-report=term-missing -vv}
deps =
{[testenv]deps}
pytest-cov
uWSGI
Django==1.7.11

[testenv:3.5-1.7-nocover]
basepython = {env:TOXPYTHON:python3.5}
deps =
{[testenv]deps}
uWSGI
Django==1.7.11

[testenv:3.5-1.8]
basepython = {env:TOXPYTHON:python3.5}
setenv =
{[testenv]setenv}
WITH_COVERAGE=yes
usedevelop = true
commands =
{posargs:py.test --cov --cov-report=term-missing -vv}
deps =
{[testenv]deps}
pytest-cov
uWSGI
Django==1.8.14

[testenv:3.5-1.8-nocover]
basepython = {env:TOXPYTHON:python3.5}
deps =
{[testenv]deps}
uWSGI
Django==1.8.14

[testenv:3.5-1.9]
basepython = {env:TOXPYTHON:python3.5}
setenv =
{[testenv]setenv}
WITH_COVERAGE=yes
usedevelop = true
commands =
{posargs:py.test --cov --cov-report=term-missing -vv}
deps =
{[testenv]deps}
pytest-cov
uWSGI
Django==1.9.9

[testenv:3.5-1.9-nocover]
basepython = {env:TOXPYTHON:python3.5}
deps =
{[testenv]deps}
uWSGI
Django==1.9.9



0 comments on commit b3507ed

Please sign in to comment.