Makefile: run tox parallel without the spinner
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.
This commit is contained in:
parent
ae72480612
commit
3a74916655
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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
|
||||
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue