Hanno Böck commited on 2019-12-22 12:31:57
Zeige 1 geänderte Dateien mit 3 Einfügungen und 1 Löschungen.
... | ... |
@@ -10,7 +10,9 @@ class TestCodingstyle(unittest.TestCase): |
10 | 10 |
subprocess.run(["pycodestyle", "--ignore=W503"] |
11 | 11 |
+ pyfiles, check=True) |
12 | 12 |
subprocess.run(["pyflakes"] + pyfiles, check=True) |
13 |
- subprocess.run(["pylint", "--disable=missing-docstring,invalid-name"] |
|
13 |
+ |
|
14 |
+ pylint_disable = "missing-docstring,invalid-name,too-many-arguments" |
|
15 |
+ subprocess.run(["pylint", "--disable=%s" % pylint_disable] |
|
14 | 16 |
+ pyfiles, check=True) |
15 | 17 |
|
16 | 18 |
|
17 | 19 |