From f9eb11b5cbcd40fda7b874d072af281880552f15 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sun, 12 Apr 2015 22:48:11 +0200 Subject: [PATCH] Add html output to integration tests It's near impossible to scroll through the nosetest output... --- .gitignore | 1 + tox.ini | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3422ad6..dfcda55 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /.coverage /.tox/ /build-servers.yml +/integration.html diff --git a/tox.ini b/tox.ini index a843467..d0a1ba1 100644 --- a/tox.ini +++ b/tox.ini @@ -20,9 +20,10 @@ commands = nosetests --with-coverage --cover-package=bootstrapvz --cover-inclusi deps = nose nose-cov + nose-htmloutput Pyro4 >= 4.30 pyvbox >= 0.2.0 -commands = nosetests --with-coverage --cover-package=bootstrapvz --cover-inclusive --verbose {posargs:tests/integration} +commands = nosetests --with-coverage --cover-package=bootstrapvz --cover-inclusive --with-html --html-file=integration.html --verbose {posargs:tests/integration} [testenv:docs] changedir = docs