summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2018-09-24 08:21:11 -0700
committerDavid Lord <davidism@gmail.com>2018-09-24 08:36:28 -0700
commite8bf968c8f26231d7c2a6d04ac83c81199bb607f (patch)
tree58c41a49915bdb0c012cc89697c9bb0bb017277f /tox.ini
parenta589835a5b656eec4bace076ac7e947662c1cc68 (diff)
downloadclick-e8bf968c8f26231d7c2a6d04ac83c81199bb607f.tar.gz
update metadata
test on 3.7 fix collections deprecation warning
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 8 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 1f68f4d..a44b110 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,9 @@
[tox]
-envlist = py{36,35,34,27,py}
+envlist =
+ py{37,36,35,34,27,py3,py}
+ docs-html
+ coverage-report
+skip_missing_interpreters = true
[testenv]
passenv = LANG
@@ -7,14 +11,14 @@ deps =
pytest
coverage
colorama
-commands = coverage run -p -m pytest {posargs:tests}
+commands = coverage run -p -m pytest {posargs}
[testenv:docs-html]
-deps = sphinx
+deps = -r docs/requirements.txt
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html
[testenv:docs-linkcheck]
-deps = sphinx
+deps = -r docs/requirements.txt
commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs {envtmpdir}/linkcheck
[testenv:coverage-report]