From 04881a01267d5ce8c5f5a22b8c3d165411254a7b Mon Sep 17 00:00:00 2001 From: pauladkisson Date: Mon, 2 Oct 2023 10:46:42 +0200 Subject: [PATCH] excluded testing methods starting with 'test_', 'check_', and 'assert_' --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 82af420b..d1add2be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,9 @@ checks = [ "ES01", ] exclude = [ # don't report on objects that match any of these regex + 'test_', + 'check_', + 'assert_' ] override_SS05 = [ # override SS05 to allow docstrings starting with these words ]