diff options
| -rwxr-xr-x | run_tests.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh index 31b707449..0b5a35166 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -171,5 +171,6 @@ fi if [ $coverage -eq 1 ]; then echo "Generating coverage report in covhtml/" - ${wrapper} coverage html --include=nova/* -d covhtml -i + # Don't compute coverage for common code, which is tested elsewhere + ${wrapper} coverage html --include='nova/*' --omit='nova/openstack/common/*' -d covhtml -i fi |
