From 6dbf606212b891254b948ddaf6a14a678303e8cd Mon Sep 17 00:00:00 2001 From: Stephen Sorriaux Date: Mon, 10 Apr 2023 16:42:19 -0400 Subject: fix(testing): add `.coveragerc` (#718) This fixes the `coverage` configuration that is wrongly giving a test coverage for the `tests` and `testing` folders and ends up "blocking" PR because of `codecov`. --- .coveragerc | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .coveragerc diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..d84a6fc --- /dev/null +++ b/.coveragerc @@ -0,0 +1,6 @@ +[run] +include = + kazoo/* +omit = + kazoo/tests/* + kazoo/testing/* -- cgit v1.2.1