From 8b7a680a1ec3b4b3a061bbec08ef41222f797472 Mon Sep 17 00:00:00 2001 From: Unrud Date: Wed, 15 Jan 2020 18:44:01 +0100 Subject: [PATCH] Cosmetic changes --- setup.cfg | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/setup.cfg b/setup.cfg index 72f2357..9726a0c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,12 +9,13 @@ addopts = --flake8 --isort --cov --cov-report=term --cov-report=xml -r s norecursedirs = dist .cache .git build Radicale.egg-info .eggs venv [isort] -known_standard_library=posixpath -known_third_party=gunicorn,passlib,pkg_resources,pytest,pytest_cov,vobject +known_standard_library = posixpath +known_third_party = gunicorn,passlib,pkg_resources,pytest,pytest_cov,vobject [coverage:run] branch = True source = radicale +omit = tests/*,*/tests/* [coverage:report] # Regexes for lines to exclude from consideration @@ -28,9 +29,3 @@ exclude_lines = # Don't complain if non-runnable code isn't run: if __name__ == .__main__.: - -omit = - tests/* - */tests/* - -ignore_errors = True