From 3a91370d382a7a3ba27cb940c640feacf5f4735e Mon Sep 17 00:00:00 2001 From: Michael Johnson Date: Mon, 21 Sep 2015 04:24:32 +0000 Subject: [PATCH] Fix a typo in the .coveragerc file Coverage now aborts the run when the configuration file has unknown settings. This patch fixes a typo in the .coveragerc file that would cause coverage jobs to fail. A global requirements change will also be necessary to exclude version 4.0 of coverage as it causes tests to fail that do not fail outside of coverage or with earlier versions. Tracked here: https://review.openstack.org/#/c/228581/ Global requirements changes come in as separate patches, so I am not creating a dependency. Change-Id: Ifbbf2096303770e393e666e3562c83d863e82f15 --- .coveragerc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.coveragerc b/.coveragerc index e5382654ca..d4e0fa09fa 100644 --- a/.coveragerc +++ b/.coveragerc @@ -4,4 +4,4 @@ source = octavia omit = octavia/tests/*,octavia/openstack/* [report] -ignore-errors = True +ignore_errors = True