From 0db33c6d38c551150499e741da54dfe027854fe6 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Thu, 18 Feb 2021 02:53:40 +0000 Subject: [PATCH] remove .coveragerc root clutter --- .coveragerc | 11 ----------- setup.cfg | 12 ++++++++++++ 2 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 .coveragerc diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index 733b79998..000000000 --- a/.coveragerc +++ /dev/null @@ -1,11 +0,0 @@ -[run] -branch = True -include = tqdm/* -omit = - tqdm/contrib/bells.py - tqdm/contrib/discord.py - tqdm/contrib/telegram.py - tqdm/contrib/utils_worker.py -relative_files = True -[report] -show_missing = True diff --git a/setup.cfg b/setup.cfg index a59700ddb..9994cb1f4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -118,3 +118,15 @@ markers= python_files=tests_*.py testpaths=tests addopts=-v --tb=short -rxs -W=error --durations=0 --durations-min=0.1 + +[coverage:run] +branch=True +include=tqdm/* +omit= + tqdm/contrib/bells.py + tqdm/contrib/discord.py + tqdm/contrib/telegram.py + tqdm/contrib/utils_worker.py +relative_files=True +[coverage:report] +show_missing=True