aetherscale

[unmaintained] code for a cloud provider tutorial
Log | Files | Refs | README | LICENSE

commit 47196c969ba7dd855e6fe59458a038b905699cf1
parent 7de97613ce19dcaeed8c01fd09bb333397c9e393
Author: Stefan Koch <programming@stefan-koch.name>
Date:   Tue, 15 Dec 2020 19:07:13 +0100

generate HTML coverage report

Diffstat:
M.gitignore | 1+
Mtox.ini | 4+++-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore @@ -7,5 +7,6 @@ user_images build dist env +htmlcov __pycache__ *.egg-info diff --git a/tox.ini b/tox.ini @@ -14,4 +14,6 @@ skip_install = true commands = coverage erase [testenv:report] -commands = coverage report +commands = + coverage report + coverage html