Skip to content

Commit 20cb9a0

Browse files
committed
release 3.8.6
1 parent d073263 commit 20cb9a0

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

docs/changelog.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ with advance notice in the **Deprecations** section of releases.
1111

1212
.. towncrier release notes start
1313
14+
v3.8.6 (2019-04-03)
15+
-------------------
16+
17+
Bugfixes
18+
^^^^^^^^
19+
20+
- :conf:`parallel_show_output` does not work with tox 3.8
21+
`#1245 <https://github.com/tox-dev/tox/issues/1245>`_
22+
23+
1424
v3.8.5 (2019-04-03)
1525
-------------------
1626

docs/changelog/1245.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/tox/session/commands/run/parallel.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def run_parallel(config, venv_dict):
3030
with Spinner(enabled=show_progress) as spinner:
3131

3232
def run_in_thread(tox_env, os_env, processes):
33+
output = None
3334
env_name = tox_env.envconfig.envname
3435
status = "skipped tests" if config.option.notest else None
3536
try:
@@ -52,8 +53,6 @@ def collect_process(process):
5253
callback=collect_process,
5354
returnout=print_out,
5455
)
55-
if print_out:
56-
reporter.verbosity0(output)
5756

5857
except InvocationError as err:
5958
status = "parallel child exit code {}".format(err.exit_code)
@@ -68,6 +67,8 @@ def collect_process(process):
6867
elif status is not None:
6968
outcome = spinner.fail
7069
outcome(env_name)
70+
if print_out and output is not None:
71+
reporter.verbosity0(output)
7172

7273
threads = deque()
7374
processes = {}

0 commit comments

Comments
 (0)