diff options
author | Yang Yu <Gabriel.yuyang@huawei.com> | 2018-01-10 10:12:01 +0800 |
---|---|---|
committer | Yang Yu <Gabriel.yuyang@huawei.com> | 2018-01-10 10:12:01 +0800 |
commit | 56b1baf063b06ad96bcb9267a5439646f77d2776 (patch) | |
tree | 49d0082d9419aaa6ffceb7d1decae3b199740506 /requirements | |
parent | eca62b89506ffa7b3b4f70cda3b10160c38158a5 (diff) |
bug-fix: veriry job no coverage package
JIRA: BOTTLENECK-219
vitualenv should install nose and coverage package for unittest,
only install coverage is not enough since virtualenv will use
external nose which couldnt find coverage package installed
externally
Change-Id: I6daebf2db6dd97cdfd0eac0c43a619229ba38577
Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
Diffstat (limited to 'requirements')
-rw-r--r-- | requirements/verify.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/requirements/verify.txt b/requirements/verify.txt index 86f57e02..3c63c8ff 100644 --- a/requirements/verify.txt +++ b/requirements/verify.txt @@ -9,4 +9,5 @@ # This file is for verify job excuted by OPNFV CI flake8==3.0.4 -coverage==4.4.2
\ No newline at end of file +nose==1.3.7 +coverage==4.4.2 |