[elbe-devel] [PATCH 3/4] test_flake8: drop custom flake8 options
Thomas Weißschuh
thomas.weissschuh at linutronix.de
Wed Mar 27 17:23:06 CET 2024
flake8 is now configured centrally in flake8.cfg making the parameters
unneeded.
Signed-off-by: Thomas Weißschuh <thomas.weissschuh at linutronix.de>
---
elbepack/tests/test_flake8.py | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/elbepack/tests/test_flake8.py b/elbepack/tests/test_flake8.py
index cddd830d9b21..fadb33abcaa1 100644
--- a/elbepack/tests/test_flake8.py
+++ b/elbepack/tests/test_flake8.py
@@ -6,8 +6,4 @@ import subprocess
def test_flake8():
- subprocess.run([
- 'flake8',
- '--max-line-length=100', '--show-source',
- 'elbepack',
- ], check=True)
+ subprocess.run(['flake8'], check=True)
--
2.44.0
More information about the elbe-devel
mailing list