From d2e8af297cffdd52e1487ec3f12edc625e6dde06 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Tue, 6 Oct 2015 23:57:45 +0700 Subject: coverage-4.0a6 compatibility coverage 4.0a6 no longer generates .coverage file; consistently usei rm -f instead of rm in Makefile so that build succeeds regardless --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5743ce0..dd894ff 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: check: python -m CoverageTestRunner --ignore-missing-from=without-tests - rm .coverage + rm -f .coverage pep8 ttystatus if command -v pylint && pylint --version | grep '^pylint [1-9]'; \ then \ -- cgit v1.2.1