From 2f0d4e2c5a35e47f6370dfc3d82ad8a44b633fb9 Mon Sep 17 00:00:00 2001 From: Tobias Oberstein Date: Wed, 6 Dec 2023 19:26:07 +0100 Subject: [PATCH] disable flake8 warns/errs which are now fatal -- for now --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index cc38236..c3fd13c 100644 --- a/tox.ini +++ b/tox.ini @@ -53,7 +53,7 @@ deps = flake8 commands = # W503: yapfs is right! https://github.com/google/yapf/issues/335 - flake8 --ignore=E501,E722,W503,W504,E251,E126 --exclude="cfxdb/gen cfxdb/tests" cfxdb + flake8 --ignore=E501,E721,E722,W503,W504,E231,E251,E126 --exclude="cfxdb/gen cfxdb/tests" cfxdb [testenv:yapf]