[tor-commits] [bridgedb/develop] Don't allow coverage-test or coverage-html to fail in Makefile.

isis at torproject.org isis at torproject.org
Tue Jul 8 13:05:02 UTC 2014


commit 33cf0d78f54691e084f5ec2275ef753b9d8e3c4e
Author: Isis Lovecruft <isis at torproject.org>
Date:   Mon Jun 9 12:51:10 2014 +0000

    Don't allow coverage-test or coverage-html to fail in Makefile.
    
    Something lately has been causeing Travis CI to sometimes not report a
    build failure when a unittest fails. Removing the dashes before these
    commands in the hopes that this was the problem.
---
 Makefile |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index 0184291..4bd5f14 100644
--- a/Makefile
+++ b/Makefile
@@ -53,10 +53,10 @@ clean:
 	-rm -rf _trial_temp
 
 coverage-test:
-	-coverage run --rcfile=".coveragerc" $(TRIAL) ./lib/bridgedb/test/test_*.py
-	-coverage report --rcfile=".coveragerc"
+	coverage run --rcfile=".coveragerc" $(TRIAL) ./lib/bridgedb/test/test_*.py
+	coverage report --rcfile=".coveragerc"
 
 coverage-html:
-	-coverage html --rcfile=".coveragerc"
+	coverage html --rcfile=".coveragerc"
 
 coverage: coverage-test coverage-html





More information about the tor-commits mailing list