From 79f136ffbae5052dbc526eb99007afd87f98ebf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Pr=C3=BCsse?= Date: Fri, 10 Nov 2023 11:23:44 -0300 Subject: [PATCH] Force color output on test run --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 01b7fce5..58d1e7aa 100644 --- a/tasks.py +++ b/tasks.py @@ -155,7 +155,7 @@ def docs(ctx, python_version=None): @invoke.task def test(ctx): print_message('test'.format(), color=Fore.BLUE, bright=True) - cmd = 'pytest --cov=qmxgraph --timeout=30 -v --durations=10' + cmd = 'pytest --cov=qmxgraph --timeout=30 -v --durations=10 --color=yes' import subprocess