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解決方案不太適用,這就產生了問題。有人可以請指教嗎?
這一警告是從pybuilder([這裏](https://github.com/pybuilder/pybuilder/blob/3bb52943e4e78dc316525f6facd2231bc956f5c1/src/main/python/pybuilder/plugins/python/coverage_plugin.py#L165)),所以一個通用的coverage.py答案可能無濟於事。 –