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:
Michael Vogt 2024-08-07 09:49:49 +02:00 committed by Ondřej Budai
parent ae72480612
commit 3a74916655

View file

@ -257,7 +257,7 @@ test-all:
.PHONY: lint .PHONY: lint
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
# #