You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ca...@apache.org on 2022/03/03 04:20:42 UTC

[dolphinscheduler] branch dev updated: [python] Increase UT coverage threshold to 0.9 (#8660)

This is an automated email from the ASF dual-hosted git repository.

caishunfeng pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new aac960d  [python] Increase UT coverage threshold to 0.9 (#8660)
aac960d is described below

commit aac960d3d2c7398125e12068bdedb298af280088
Author: Jiajie Zhong <zh...@hotmail.com>
AuthorDate: Thu Mar 3 12:20:34 2022 +0800

    [python] Increase UT coverage threshold to 0.9 (#8660)
    
    This patch increase Python API unit test coverage
    threshold from 85% to 90%. If coverage under 90%
    will failed our the test
---
 dolphinscheduler-python/pydolphinscheduler/.coveragerc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-python/pydolphinscheduler/.coveragerc b/dolphinscheduler-python/pydolphinscheduler/.coveragerc
index 524cb73..52286d6 100644
--- a/dolphinscheduler-python/pydolphinscheduler/.coveragerc
+++ b/dolphinscheduler-python/pydolphinscheduler/.coveragerc
@@ -29,4 +29,4 @@ skip_covered = True
 show_missing = True
 precision = 2
 # Report will fail when coverage under 90.00%
-fail_under = 85
+fail_under = 90