From 13ca0da0cc4d0703ca42113f607bde95cf0bfd9c Mon Sep 17 00:00:00 2001 From: Ilya Etingof Date: Sat, 14 Mar 2020 18:45:05 +0100 Subject: [PATCH] Fix tox deps inheritance --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 48d3973..9bfc5ae 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.4.0 -envlist = {py27, py35, py36, py37, py38}-{unittest}, cover, bandit, build +envlist = {py27, py35, py36, py37, py38}-{unittest}, conver, bandit, build isolated_build = true skip_missing_interpreters = true @@ -15,6 +15,7 @@ install_command = [testenv:unittest] deps = + {[testenv]deps} discover -r{toxinidir}/requirements.txt commands = @@ -46,6 +47,7 @@ setenv = {[testenv]setenv} PYTHON=coverage run --parallel-mode deps = + {[testenv:unittest]deps} coverage discover commands = coverage erase