2017-01-23 73 views
0

问题:瓶的应用正在建造与Pybuilder需要覆盖的构建过程中排除run.py摆脱的警告对覆盖率的消息和影响如何将coverage(包含在pybuilder中)更新到igrore 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解决方案不太适用,这就产生了问题。有人可以请指教吗?

+0

这一警告是从pybuilder([这里](https://github.com/pybuilder/pybuilder/blob/3bb52943e4e78dc316525f6facd2231bc956f5c1/src/main/python/pybuilder/plugins/python/coverage_plugin.py#L165)),所以一个通用的coverage.py答案可能无济于事。 –

回答

0

找到答案! 解决方案: 在build.py(pybuilder项目的一部分)地址:

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

列表可以与其它模块根据需要进行扩展。