From f388ea131e32bb0a12b37ff7c330c1db35d76db0 Mon Sep 17 00:00:00 2001 From: Ben Patterson Date: Mon, 6 Apr 2015 16:52:22 -0400 Subject: [PATCH] Omit migrations when calculating bok-choy coverage. When we calculate bok-choy coverage, we are including various migraitons as part of the calculation. This does not represent the kind of code that bok-choy can cover, since that is part of the RDBMS build-out and maintenance. --- common/test/acceptance/.coveragerc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/test/acceptance/.coveragerc b/common/test/acceptance/.coveragerc index 32a237f3bb..814241d2d9 100644 --- a/common/test/acceptance/.coveragerc +++ b/common/test/acceptance/.coveragerc @@ -1,7 +1,7 @@ [run] data_file = reports/bok_choy/.coverage source = lms, cms, common/djangoapps, common/lib -omit = lms/envs/*, cms/envs/*, common/djangoapps/terrain/*, common/djangoapps/*/migrations/*, openedx/core/djangoapps/*/migrations/*, */test*, */management/*, */urls*, */wsgi* +omit = lms/envs/*, cms/envs/*, common/djangoapps/terrain/*, common/djangoapps/*/migrations/*, openedx/core/djangoapps/*/migrations/*, */test*, */management/*, */urls*, */wsgi*, lms/djangoapps/*/migrations/*, cms/djangoapps/*/migrations/* parallel = True [report]