From 5c012fe16878859d9d6be1445f5f8772f010c80f Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 19 Jul 2018 11:40:00 +0100 Subject: [PATCH] tox: Re-add cover target This was removed in an earlier patch but should not have been. Re-add it now. Change-Id: I68b785498a1a00f2301f610bbb8cb2e024416515 Signed-off-by: Stephen Finucane --- tox.ini | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tox.ini b/tox.ini index cf27d987..d97e6ff7 100644 --- a/tox.ini +++ b/tox.ini @@ -31,6 +31,16 @@ commands = basepython = python3 commands = {posargs} +[testenv:cover] +basepython = python3 +setenv = + PYTHON=coverage run --source pbr --parallel-mode +commands = + stestr run {posargs} + coverage combine + coverage html -d cover + coverage xml -o cover/coverage.xml + [flake8] # H405 multi line docstring summary not separated with an empty line # H904 "Wrap lines in parentheses and not a backslash for line continuation