summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Sorriaux <stephen.sorriaux@gmail.com>2023-04-10 16:42:19 -0400
committerGitHub <noreply@github.com>2023-04-10 13:42:19 -0700
commit6dbf606212b891254b948ddaf6a14a678303e8cd (patch)
tree93d39a5cb6f0d968c875eb9ea7f3e634f1f284f9
parent33c348bec621694c309deb5e6666ac3a40d64878 (diff)
downloadkazoo-6dbf606212b891254b948ddaf6a14a678303e8cd.tar.gz
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`.
-rw-r--r--.coveragerc6
1 files changed, 6 insertions, 0 deletions
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/*