From 3a749166559b0b107b1b6aa9d6f710690837415b Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 7 Aug 2024 09:49:49 +0200 Subject: [PATCH] Makefile: run `tox parallel` without the spinner MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The spinner is mostly distracting IMHO and it makes the CI logs harder to read as it generates several dozens of lines like: ``` ... ⠋ [3/5] pylint | autopep8 | mypy-strict ... ``` I was considering to make it conditional on GH but decided to just disable globally. If someone feels attached to the spinner I only disable it in GH. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 630f5fe9..80deea34 100644 --- a/Makefile +++ b/Makefile @@ -257,7 +257,7 @@ test-all: .PHONY: lint lint: - tox run-parallel -e ruff,pylint,autopep8,mypy,mypy-strict + tox run-parallel --parallel-no-spinner -e ruff,pylint,autopep8,mypy,mypy-strict #