如何更新覆盖范围(包括在pybuilder中)到igrore run.py模块?

时间:2017-01-23 20:01:58

标签: python flask code-coverage pybuilder

问题:使用Pybuilder构建的Flask应用程序需要Coverage在构建期间排除run.py以消除警告消息并影响覆盖百分比

[WARN]  Module 'run' was not imported by the covered tests

[WARN]  Test coverage below 70% for run:  0%

(env3)$ python3 build.py
PyBuilder version 0.11.9
Build started at 2017-01-23 12:48:03
------------------------------------------------------------
[INFO]  Building myproject version 0.0.1.00526
[INFO]  Executing build in /Users/zzzz/Documents/Projects/myproject
[INFO]  Going to execute tasks: clean, install_dependencies, analyze, publish
[INFO]  Removing target directory /Users/zzzz/Documents/Projects/myproject/target
[INFO]  Installing all dependencies
[INFO]  Running unit tests
[INFO]  Executing unit tests from Python modules in /Users/zzzz/Documents/Projects/myproject/src/unittest/python
[INFO]  Executed 14 unit tests
[INFO]  All unit tests passed.
[INFO]  Executing flake8 on project sources.
[INFO]  Collecting coverage information
[WARN]  coverage_branch_threshold_warn is 0 and branch coverage will not be checked
[WARN]  coverage_branch_partial_threshold_warn is 0 and partial branch coverage will not be checked
[INFO]  Running unit tests
[INFO]  Executing unit tests from Python modules in /Users/zzzz/Documents/Projects/myproject/src/unittest/python
[INFO]  Executed 14 unit tests
[INFO]  All unit tests passed.
[WARN]  Module 'run' was not imported by the covered tests
------------------------------------------------------------
BUILD FAILED - Build aborted
------------------------------------------------------------
Build finished at 2017-01-23 12:48:16
Build took 12 seconds (12694 ms)
[WARN]  Test coverage below 70% for run:  0%
[WARN]  Test coverage below 70% for run:  0%
[WARN]  Test coverage below 70% for app.mod_upload: 21%
[WARN]  Test coverage below 70% for app.mod_upload: 21%
[INFO]  Overall coverage is 79%
[INFO]  Overall coverage branch coverage is 66%
[INFO]  Overall coverage partial branch coverage is 77%
[INFO]  Overall coverage is 79%
[INFO]  Overall coverage branch coverage is 66%
[INFO]  Overall coverage partial branch coverage is 77%
(env3)$ 

问题:我本来可以使用answer here,但是由pybuild执行覆盖,而不是我自己从命令行执行,所以--omit解决方案不太适用,这会产生问题。有人可以建议吗?

1 个答案:

答案 0 :(得分:1)

找到答案! 解: 在build.py(pybuilder项目的一部分)中添加:

@init
def set_properties(project):
    project.set_property("coverage_exceptions", ['run',])

列表可以根据需要使用其他模块进行扩展。