build_release: Call tox with -v

This commit is contained in:
Florian Bruhin 2017-05-24 07:10:02 +02:00
parent b811b9e380
commit 4e48f878ba

View File

@ -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)