Remove --omit argument in run_tests.sh

The manila/openstack/common directory had been removed. So in
run_tests.sh, there is no need to use argument
"--omit='manila/openstack/common'".

Change-Id: I210e018728ec96c1fcbe86384243277948225682
This commit is contained in:
Luong Anh Tuan 2017-07-04 18:20:15 +07:00
parent 0921ea5285
commit c60cd59ef6
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ function run_tests {
echo "Generating coverage report in covhtml/"
# Don't compute coverage for common code, which is tested elsewhere
${wrapper} coverage combine
${wrapper} coverage html --include='manila/*' --omit='manila/openstack/common/*' -d covhtml -i
${wrapper} coverage html --include='manila/*' -d covhtml -i
fi
return $RESULT