aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorthmsdt <thomas.kulik@telekom.de>2024-01-05 14:11:20 +0100
committerthmsdt <thomas.kulik@telekom.de>2024-01-05 14:12:53 +0100
commit26790fb6bfe54c4767acbfc92b64629f9ca05f22 (patch)
treec2bb43b37a3755fca73a2ffee48203a76f09c2a6 /tox.ini
parent61c838971a4a962fc74d2187be13f2b7561fd627 (diff)
fix docs config filesmontreal
Issue-ID: DOC-821 Change-Id: I7f9332993119ded3806f39de527cf029bc477cb5 Signed-off-by: thmsdt <thomas.kulik@telekom.de>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 8dc20c9..6a5719f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -26,7 +26,7 @@ deps = -r{toxinidir}/requirements.txt
source=./apps/,./osdf/,osdfapp.py,./runtime/,solverapp.py
[testenv:pylint]
-whitelist_externals=bash
+allowlist_externals=bash
commands = bash -c "pylint --reports=y osdf apps runtime| tee pylint.out"
[testenv:py3]
@@ -34,7 +34,7 @@ basepython=python3
[testenv:flake8diff]
basepython=python3
-whitelist_externals=bash
+allowlist_externals=bash
deps = hacking>=2.0.0
commands =
bash -c "files=$(git diff HEAD^ HEAD --diff-filter=d --name-only | grep -E '(^apps\/|osdf\/|runtime\/)'| grep -E '*\.py$'); if [[ -z $files ]]; then exit 0; else flake8 $files; fi"