From 99a6eb47d06a5e05f0df20688eca1e2f62d16eea Mon Sep 17 00:00:00 2001 From: Masayuki Igawa Date: Thu, 14 Jan 2016 19:28:32 +0900 Subject: [PATCH] Add omit files for coverage This commit adds omit files for coverage. In tempest, we can get coverage of its unit tests. But we don't need the coverage of api tests, scenario tests and api_schema. Because we don't need to have their unit tests. Depends-on: I6a1e7a411a4b27fa0f9bd533276d5cb4d4759976 Change-Id: I91931a68485f03b88872a2f1f860cf8da2f28eb5 --- .coveragerc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.coveragerc b/.coveragerc index c9b6467bb..51482d354 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,4 +1,4 @@ [run] branch = True source = tempest -omit = tempest/tests/*,tempest/openstack/* +omit = tempest/tests/*,tempest/scenario/test_*.py,tempest/api_schema/*,tempest/api/*