Skip to content

Commit e899c65

Browse files
authored
Merge branch 'master' into changes
2 parents f3866df + 9a6607f commit e899c65

2 files changed

Lines changed: 11 additions & 8 deletions

File tree

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/docs/_build
1+
/docs/_build/
22
tmp.py
33
*.py[cod]
44

@@ -37,7 +37,10 @@ nosetests.xml
3737
/.coverage
3838
/.coverage.*
3939
/htmlcov/
40-
/.mypy_cache
40+
/.mypy_cache/
41+
42+
# Documentation
43+
/htmldocs/
4144

4245
# Translations
4346
*.mo

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
envlist =
44
flake8, mypy
5-
test-py{26,27,34,35,36,37,38,py,py3}
5+
test-py{26,27,34,35,36,37,38,py2,py3}
66
coverage_report
7-
packaging
87
docs
8+
packaging
99

1010
skip_missing_interpreters = {tty:True:False}
1111

@@ -182,12 +182,12 @@ description = generate coverage report
182182

183183
depends = test-py{26,27,34,35,36,37,38,py,py3}
184184

185-
basepython = python
185+
basepython = {[default]basepython}
186186

187187
skip_install = True
188188

189189
deps =
190-
coverage==4.5.4 # rq.filter: <5
190+
coverage==4.5.4 # rq.filter: <5 # coverage 5.0 drops Python 3.4 support
191191

192192
setenv =
193193
{[default]setenv}
@@ -265,7 +265,7 @@ commands =
265265
sphinx-build \
266266
-b html -d "{envtmpdir}/doctrees" \
267267
"{toxinidir}/docs" \
268-
"{toxworkdir}/docs/html"
268+
"{toxworkdir}/htmldocs"
269269

270270

271271
[testenv:docs-auto]
@@ -283,7 +283,7 @@ commands =
283283
-b html -d "{envtmpdir}/doctrees" \
284284
--host=localhost \
285285
"{toxinidir}/docs" \
286-
"{toxworkdir}/docs/html"
286+
"{toxworkdir}/htmldocs"
287287

288288

289289
##

0 commit comments

Comments
 (0)