summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--tox.ini2
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 4515c8f..683f357 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,6 +25,7 @@ pip-log.txt
.coverage
.tox
coverage
+htmlcov*
#Translations
*.mo
diff --git a/tox.ini b/tox.ini
index 3dded41..8f3345e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,7 +4,7 @@ envlist = py27,py34,py35,py36,pypy,docs
[testenv]
deps=
-rrequirements-test.txt
-commands=nosetests --with-coverage --cover-erase --cover-package=oauthlib -w tests
+commands=nosetests --with-coverage --cover-html --cover-html-dir={toxinidir}/htmlcov-{envname} --cover-erase --cover-package=oauthlib -w tests
[testenv:py27]
deps=unittest2