Skip to content

Commit 5522bb7

Browse files
committed
tests
1 parent 27af59b commit 5522bb7

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

test/core/run_tests.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ def log(
8282
line = click.style(line, fg="white", bold=True)
8383

8484
pid = os.getpid()
85-
click.echo("[pid %s] %s" % (pid, line), color=True)
85+
click.echo("[pid %s] %s" % (pid, line))
8686
if processes:
87-
click.echo("STDOUT follows:", color=True)
87+
click.echo("STDOUT follows:")
8888
for p in processes:
89-
click.echo(p.stdout, nl=False, color=True)
90-
click.echo("STDERR follows:", color=True)
89+
click.echo(p.stdout, nl=False)
90+
click.echo("STDERR follows:")
9191
for p in processes:
92-
click.echo(p.stderr, nl=False, color=True)
92+
click.echo(p.stderr, nl=False)
9393

9494

9595
def run_test(formatter, context, debug, checks, env_base, executor):

0 commit comments

Comments
 (0)