diff options
author | Yang Yu <Gabriel.yuyang@huawei.com> | 2018-01-08 10:58:11 +0800 |
---|---|---|
committer | Yang Yu <Gabriel.yuyang@huawei.com> | 2018-01-08 10:58:11 +0800 |
commit | 9d0fcc9dba43040746b0fd45c6943bea9ba3462d (patch) | |
tree | a9e64bc6baf4ee618b15c2321840215dcafee97c | |
parent | 97a77626cc17fb372a78ddfc78a66e483315b864 (diff) |
bug-fix: coverage package missing for ci verify
JIRA: BOTTLENECK-219
nosetests has enbled coverage check which requires coverage
package missing currently
Change-Id: Ia4b87a6036ea00532014a332170a19681432f84c
Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
-rw-r--r-- | requirements/verify.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/requirements/verify.txt b/requirements/verify.txt index e8d51f47..86f57e02 100644 --- a/requirements/verify.txt +++ b/requirements/verify.txt @@ -6,5 +6,7 @@ # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## +# This file is for verify job excuted by OPNFV CI -flake8==3.0.4
\ No newline at end of file +flake8==3.0.4 +coverage==4.4.2
\ No newline at end of file |