From 7180258886e06a00b00b0a112b12d5c680644093 Mon Sep 17 00:00:00 2001 From: Dougal Matthews Date: Thu, 7 Jun 2018 12:12:46 +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: Idaf7b80657918681b25c154f5a81b0a515c82b52 --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 0355126b..2339f429 100644 --- a/tox.ini +++ b/tox.ini @@ -33,7 +33,9 @@ commands = {posargs} [testenv:pep8] basepython = python3 -commands = flake8 {posargs} +commands = + python setup.py check --restructuredtext --strict + flake8 {posargs} [testenv:venv] basepython = python3