From bdbb4f6bfa1d1c7d37f23390b953d167dd68ea29 Mon Sep 17 00:00:00 2001 From: derwinlu Date: Tue, 13 Oct 2015 10:31:59 +0200 Subject: [PATCH] do not fail tox if coveralls push fails When tox environments are run locally, coveralls exits with an error code as it is not authenticated to push to coveralls. Adding the - in front allows tox to ignore a fail on this command and not mark the test case as failed. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 56ad0c14..2ff23276 100644 --- a/tox.ini +++ b/tox.ini @@ -17,7 +17,7 @@ deps = commands = {envpython} --version nosetests -sv --with-coverage --cover-package=pelican pelican - coveralls + - coveralls [testenv:docs] basepython = python2.7