From 1d0376fa586a6bb53bc3db602f5b69cb24dcc077 Mon Sep 17 00:00:00 2001 From: Prajjwal Nijhara Date: Thu, 23 Apr 2020 00:22:59 +0530 Subject: [PATCH] chore: Update test file pattern in .deepsource.toml (#6925) The test file patterns should look like `tests/**` to remove false positives like https://deepsource.io/gh/fossasia/open-event-server/issue/BAN-B101/occurrences Co-authored-by: Areeb Jamal --- .deepsource.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.deepsource.toml b/.deepsource.toml index 54231318a7..d6f9fbc174 100644 --- a/.deepsource.toml +++ b/.deepsource.toml @@ -1,6 +1,6 @@ version = 1 -test_patterns = ["*/tests/**"] +test_patterns = ["tests/**"] exclude_patterns = ["migrations/**"]