Merge "Drop unnecessary allowlist_externals"

This commit is contained in:
Zuul
2026-04-01 23:21:13 +00:00
committed by Gerrit Code Review
+2 -3
View File
@@ -39,17 +39,16 @@ commands = {toxinidir}/tools/states_to_dot.py -f {toxinidir}/doc/source/images/s
[testenv:pep8]
deps = pre-commit
allowlist_externals = pre-commit
commands = pre-commit run --all-files --show-diff-on-failure {posargs}
[testenv:bandit]
deps = pre-commit
deps = {[testenv:pep8]deps}
commands = pre-commit run --all-files --show-diff-on-failure bandit
[testenv:codespell]
description =
Run codespell to check spelling
deps = pre-commit
deps = {[testenv:pep8]deps}
commands = pre-commit run --all-files --show-diff-on-failure codespell
[testenv:cover]