Skip to content
Snippets Groups Projects
Commit 31f57d30b5e3 authored by Laurent Peuch's avatar Laurent Peuch
Browse files

chore(tox): add black and black-run commands

parent dfcc55c045ad
No related branches found
No related tags found
1 merge request!42chore(tox): add black and black-run commands
Pipeline #171110 failed
[tox]
envlist = py3,flake8, check-manifest, yamllint
envlist = py3,flake8, check-manifest, yamllint, black
[testenv]
deps =
......@@ -54,3 +54,17 @@
deps = yamllint
commands =
yamllint .
[testenv:black]
basepython = python3
skip_install = true
deps =
black >= 22.12
commands = black --check .
[testenv:black-run]
basepython = python3
skip_install = true
deps =
black >= 22.12
commands = black .
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment