aboutsummaryrefslogtreecommitdiffstats
path: root/ptl/edit_committers_info/tox.ini
diff options
context:
space:
mode:
authorMichal Jagiello <michal.jagiello@t-mobile.pl>2021-11-25 13:12:38 +0000
committerMichal Jagiello <michal.jagiello@t-mobile.pl>2021-11-25 18:51:42 +0000
commit9d1916c9f16d8a9426d11ad732d08b14b6d5d7b3 (patch)
treec1237030a33a22bd102c5a8ccd5b1ef0a64d4629 /ptl/edit_committers_info/tox.ini
parentb2870e762c11f727f8f3d1dc1d65838e4600a1ad (diff)
[INTEGRATION] Automate INFO.yaml file maintenance
Edit commiters list tool to automate commiters deletion on multiple repositories Issue-ID: INT-2009 Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl> Change-Id: I1afd6f3a6b3539ad0a5e9273c6baee2f1e25ad19
Diffstat (limited to 'ptl/edit_committers_info/tox.ini')
-rw-r--r--ptl/edit_committers_info/tox.ini17
1 files changed, 17 insertions, 0 deletions
diff --git a/ptl/edit_committers_info/tox.ini b/ptl/edit_committers_info/tox.ini
new file mode 100644
index 000000000..5674a5caa
--- /dev/null
+++ b/ptl/edit_committers_info/tox.ini
@@ -0,0 +1,17 @@
+[tox]
+envlist = black,mypy,docstyle
+skipsdist = True
+
+[testenv:black]
+deps = black
+commands = black --check edit_committers_list.py --target-version py310
+
+[testenv:mypy]
+deps =
+ mypy
+ -rrequirements.txt
+commands = mypy --strict edit_committers_list.py
+
+[testenv:docstyle]
+deps = pydocstyle
+commands = pydocstyle edit_committers_list.py