Hanno Böck commited on 2022-07-15 12:41:55
Zeige 1 geänderte Dateien mit 1 Einfügungen und 1 Löschungen.
| ... | ... |
@@ -8,7 +8,7 @@ class TestCodingstyle(unittest.TestCase): |
| 8 | 8 |
def test_codingstyle(): |
| 9 | 9 |
pyfiles = ["freewvs", "update-freewvsdb", |
| 10 | 10 |
"setup.py"] + glob.glob("tests/*.py")
|
| 11 |
- subprocess.run(["pycodestyle", "--ignore=W503"] |
|
| 11 |
+ subprocess.run(["pycodestyle", "--ignore=W503", "--max-line-length=88"] |
|
| 12 | 12 |
+ pyfiles, check=True) |
| 13 | 13 |
subprocess.run(["pyflakes"] + pyfiles, check=True) |
| 14 | 14 |
|
| 15 | 15 |