Merge "Rename docs to doc to align with OpenStack standard"

This commit is contained in:
Zuul 2018-06-10 01:24:15 +00:00 committed by Gerrit Code Review
commit c7dc0e71dc
9 changed files with 3 additions and 3 deletions

View File

@ -15,6 +15,6 @@
- hosts: primary
tasks:
- name: Execute a Whitespace Linter check
command: find . -not -path "*/\.*" -not -path "*/docs/build/*" -not -name "*.tgz" -type f -exec egrep -l " +$" {} \;
command: find . -not -path "*/\.*" -not -path "*/doc/build/*" -not -name "*.tgz" -type f -exec egrep -l " +$" {} \;
register: result
failed_when: result.stdout != ""

View File

@ -26,8 +26,8 @@ commands =
whitelist_externals = tox
[testenv:docs]
deps = -r{toxinidir}/docs/requirements.txt
deps = -r{toxinidir}/doc/requirements.txt
commands =
rm -rf doc/build
sphinx-build -b html docs/source docs/build -n -W -v
sphinx-build -b html doc/source doc/build -n -W -v
whitelist_externals = rm