From b002c9d520ccc682e44e7d8a935137c4a9305772 Mon Sep 17 00:00:00 2001 From: thatmattlove Date: Mon, 13 Sep 2021 14:12:04 -0700 Subject: [PATCH] Update flake8 config for tests --- .flake8 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.flake8 b/.flake8 index 378135b..1745540 100644 --- a/.flake8 +++ b/.flake8 @@ -16,6 +16,8 @@ per-file-ignores= # Disable unused import warning for modules hyperglass/*/__init__.py:F401 hyperglass/models/*/__init__.py:F401 + # Disable assertion and docstring checks on tests. + hyperglass/**/test_*.py:S101,D103 ignore=W503,C0330,R504,D202,S403,S301,S404,E731 select=B, BLK, C, D, E, F, I, II, N, P, PIE, S, R, W disable-noqa=False