From e1747c1deafefbdd1798ec61314f78176e293ac2 Mon Sep 17 00:00:00 2001 From: Gunnar Schaefer Date: Mon, 15 Jan 2018 09:46:24 -0800 Subject: [PATCH] Force remove of .coverage and htmlcov --- tests/bin/docker-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bin/docker-tests.sh b/tests/bin/docker-tests.sh index f9e957cc0..b91cc606b 100755 --- a/tests/bin/docker-tests.sh +++ b/tests/bin/docker-tests.sh @@ -114,7 +114,7 @@ clean_up() { --volume $(pwd):/src/core \ scitran/core:testing \ sh -c ' - rm .coverage; + rm -rf .coverage htmlcov; coverage combine; coverage report --skip-covered --show-missing; coverage html;