Check the docs during tests

This commit is contained in:
Jason R. Coombs 2017-09-13 04:24:11 -04:00
parent 250cb96002
commit 88d315ae9a
2 changed files with 4 additions and 1 deletions

View File

@ -38,6 +38,7 @@ params = dict(
'testing': [ 'testing': [
'pytest>=2.8', 'pytest>=2.8',
'pytest-sugar', 'pytest-sugar',
'collective.checkdocs',
], ],
'docs': [ 'docs': [
'sphinx', 'sphinx',

View File

@ -2,6 +2,8 @@
minversion = 2.4 minversion = 2.4
[testenv] [testenv]
commands = py.test {posargs} commands =
py.test {posargs}
python setup.py checkdocs
usedevelop = True usedevelop = True
extras = testing extras = testing