From 527c5898823398d3f8bd1306e4902214bfd3dbe7 Mon Sep 17 00:00:00 2001 From: Alex Shatov Date: Tue, 26 Sep 2017 16:58:37 -0400 Subject: UT 78% dcaepolicy plugin * unit test withcoverage of 78 % * minor refactoring for lazy init for discovery - useful for UT Change-Id: I7bee1d5dc5c66477c6e8f19484b0179d5f726fe0 Issue-Id: DCAEGEN2-62 Signed-off-by: Alex Shatov --- dcae-policy/.coveragerc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 dcae-policy/.coveragerc (limited to 'dcae-policy/.coveragerc') diff --git a/dcae-policy/.coveragerc b/dcae-policy/.coveragerc new file mode 100644 index 0000000..2e600b5 --- /dev/null +++ b/dcae-policy/.coveragerc @@ -0,0 +1,29 @@ +# .coveragerc to control coverage.py +[run] +branch = True +cover_pylib = False +# include = */dcaepolicyplugin/*.py + +[report] +# Regexes for lines to exclude from consideration +exclude_lines = + # Have to re-enable the standard pragma + pragma: no cover + + # Don't complain about missing debug-only code: + def __repr__ + if self\.debug + + # Don't complain if tests don't hit defensive assertion code: + raise AssertionError + raise NotImplementedError + + # Don't complain if non-runnable code isn't run: + if 0: + if __name__ == .__main__.: + +ignore_errors = True + +[xml] +output = coverage-reports/coverage-dcaepolicyplugin.xml + -- cgit 1.2.3-korg