From df04a2b5fd7e90b123ec2f9641c21b1e458fef21 Mon Sep 17 00:00:00 2001 From: Dougal Matthews Date: Thu, 7 Jun 2018 12:12:17 +0100 Subject: [PATCH] Add the restructuredtext check to the flake8 job This follows a recommendation in this thread on openstack-dev. http://lists.openstack.org/pipermail/openstack-dev/2018-June/131233.html Change-Id: Ic87c54feab7fbc33092a77cfabd4075622abf4ba --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9ef6090..415955b 100644 --- a/tox.ini +++ b/tox.ini @@ -23,7 +23,9 @@ whitelist_externals = [testenv:pep8] basepython = python3 -commands = flake8 {posargs} +commands = + python setup.py check --restructuredtext --strict + flake8 {posargs} [testenv:venv] basepython = python3