From 4bcb04c2d5c06b96f0a933f16c41e6bbd0c8ea36 Mon Sep 17 00:00:00 2001 From: arashi87 Date: Wed, 15 Mar 2023 01:04:25 +0800 Subject: [PATCH] build(setup): add coverage setting to fix missing issue * https://github.com/nedbat/coveragepy/issues/1082 * https://github.com/nedbat/coveragepy/issues/1012 --- setup.cfg | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 63013e4..652229a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,4 +22,10 @@ max-line-length=120 [flake8] exclude=__init__.py,migrate -max-line-length=120 \ No newline at end of file +max-line-length=120 + +[coverage:run] +branch = True +concurrency = + greenlet + thread \ No newline at end of file