From 4e48f878ba97fb920931fd657f84bbc47ce7afcb Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 24 May 2017 07:10:02 +0200 Subject: [PATCH] build_release: Call tox with -v --- scripts/dev/build_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py index 4fb5fe18d..06a0ccf95 100755 --- a/scripts/dev/build_release.py +++ b/scripts/dev/build_release.py @@ -63,7 +63,7 @@ def call_tox(toxenv, *args, python=sys.executable): env = os.environ.copy() env['PYTHON'] = python subprocess.check_call( - [sys.executable, '-m', 'tox', '-e', toxenv] + list(args), + [sys.executable, '-m', 'tox', '-v', '-e', toxenv] + list(args), env=env)