From 22ec94ee560ad07fa0cafea9aca9a3c4d13189dc Mon Sep 17 00:00:00 2001 From: derwinlu Date: Tue, 13 Oct 2015 10:31:59 +0200 Subject: [PATCH] Do not fail tox run 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 151fad85..609be886 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,7 @@ deps = commands = {envpython} --version nosetests -sv --with-coverage --cover-package=pelican pelican - coveralls + - coveralls [testenv:docs] basepython = python2.7