From cbe77afa38aded431b696891a235a6cd6bfb8a21 Mon Sep 17 00:00:00 2001 From: Julien Iguchi-Cartigny Date: Thu, 3 Jul 2014 20:48:59 +0200 Subject: [PATCH] add explicit call to coveralls binary --- tox.ini | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 6b4094a..e93e24a 100644 --- a/tox.ini +++ b/tox.ini @@ -3,10 +3,14 @@ minversion = 1.3 envlist = py26,py27,docs,flake8 [testenv] -deps=nose - coveralls - coverage -commands=nosetests --with-coverage --cover-package=wstools +deps= + nose + coveralls + coverage +commands= + nosetests --with-coverage --cover-package=wstools + bash -c "coveralls || true" +whitelist_externals=bash [testenv:py26]