diff options
author | Guillaume Lambert <guillaume.lambert@orange.com> | 2021-02-01 21:22:33 +0100 |
---|---|---|
committer | Guillaume Lambert <guillaume.lambert@orange.com> | 2021-02-10 11:46:21 +0100 |
commit | b825e911d7515121ac40be641c5fa10801fc16ec (patch) | |
tree | 615a9dc58a60c287675c89f4fb04e8d66c132187 /tox.ini | |
parent | facc2a95ae4f4b61698235fdb9e08db89f64c43e (diff) |
[COMMON] Add a spellchecker tox profile
inspired from openStack
https://github.com/openstack/qa-specs/blob/master/tox.ini
https://doughellmann.com/blog/tag/sphinxcontrib-spelling/
https://pypi.org/project/sphinxcontrib-spelling/
Issue-ID: OOM-2648
Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com>
Change-Id: Ia341f96a906c82f88257a885fd66005450a15d16
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -23,6 +23,18 @@ commands = deps = -rdocs/requirements-docs.txt commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck +[testenv:spelling] +#basepython = python3 +whitelist_externals = wget +deps = + -rdocs/requirements-docs.txt + sphinxcontrib-spelling + PyEnchant +changedir={toxinidir}/docs +commands = + wget -nv https://git.onap.org/doc/plain/docs/validwords.txt -O spelling_wordlist.txt + sphinx-build -b spelling -d {envtmpdir}/doctrees . _build/spelling + [testenv:gitlint] basepython = python3 deps = |