diff options
author | David Lord <davidism@gmail.com> | 2018-09-24 08:21:11 -0700 |
---|---|---|
committer | David Lord <davidism@gmail.com> | 2018-09-24 08:36:28 -0700 |
commit | e8bf968c8f26231d7c2a6d04ac83c81199bb607f (patch) | |
tree | 58c41a49915bdb0c012cc89697c9bb0bb017277f /tox.ini | |
parent | a589835a5b656eec4bace076ac7e947662c1cc68 (diff) | |
download | click-e8bf968c8f26231d7c2a6d04ac83c81199bb607f.tar.gz |
update metadata
test on 3.7
fix collections deprecation warning
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -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] |