From d92dc54d54a2d80c851239a6621f5042539361ea Mon Sep 17 00:00:00 2001 From: Kenneth Love Date: Wed, 1 Feb 2017 11:26:06 -0800 Subject: [PATCH] just run tests, no need to run coverage for every suite --- tox.ini | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 62e63762..c29ca10c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,33,34}-django{15,16,17,18},py{34,35}-django{18,19,110} +envlist = py{27,33,34}-django{15,16,17,18},py{34,35,36}-django{18,19,110} install_command = pip install {opts} {packages} [testenv] @@ -8,18 +8,17 @@ basepython = py33: python3.3 py34: python3.4 py35: python3.5 + py36: python3.6 commands = - {envbindir}/coverage erase - {envbindir}/coverage run {envbindir}/{posargs:py.test} - #{envbindir}/coverage report + {posargs:py.test} deps = mock factory_boy py{27,33,34}: pytest-django==2.9.1 - py{35}: pytest-django>2.9.1 - py{27,33,34,35}: coverage==4.1 + py{35,36}: pytest-django>2.9.1 + py{27,33,34,35,36}: coverage==4.1 argparse django15: Django>=1.5,<1.6 django16: Django>=1.6,<1.7