From d67478690cf3d7ce8132e5b617f04e420833012f Mon Sep 17 00:00:00 2001 From: Jan Speller Date: Wed, 6 Jan 2021 23:19:59 +0100 Subject: [PATCH] ignore E722 and W605 for now because they produce a lot of errors --- test/pytest.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/pytest.ini b/test/pytest.ini index a370fa7..0e2272d 100644 --- a/test/pytest.ini +++ b/test/pytest.ini @@ -19,7 +19,9 @@ log_file_format=%(asctime)s - %(module)-12s %(funcName)-15s [%(levelname)-8s] %( log_file_date_format=%d.%m.%Y %H:%M:%S #flake8 plugin -flake8-ignore = E402 E501 +flake8-ignore = E402 E501 E722 W605 # E402 # import not at top # E501 # line too long +# E722 # do not use bare 'except' +# W605 # invalid escape sequence # flake8-max-line-length = 99 \ No newline at end of file