1

问题:使用 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,但是由 pybuild 执行的覆盖,而不是我自己从命令行执行的,所以 --omit 解决方案不太适用,这会产生问题。有人可以建议吗?

4

1 回答 1

1

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

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

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

于 2017-01-25T14:40:09.677 回答