Remove Static Path Sphinx

No static path is required as we don't have anything to move
from a static directory.  This will ensure the gate tests pass.
Also, moved docs to doc as gate failure isn't looking at docs
folder, and updated tox environment run.

Change-Id: I2d6d7e42eafef8e052006a4938e7950279f2f60c
Closes-Bug: #1628113
This commit is contained in:
Brian Stajkowski 2016-09-27 06:59:26 -07:00 committed by Kyle Haley
parent 764224c456
commit e215d3d260
8 changed files with 3 additions and 2 deletions

View File

@ -127,7 +127,7 @@ html_theme = 'default'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
#html_static_path = ['_static']
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied

View File

@ -4,6 +4,7 @@ hacking<0.11,>=0.10.0
# Packages needed for dev testing
mock>=2.0 # BSD
sphinx!=1.3b1,<1.3,>=1.2.1 # BSD
oslosphinx>=4.7.0 # Apache-2.0
coverage>=3.6 # Apache-2.0
python-subunit>=0.0.18 # Apache-2.0/BSD
oslotest>=1.10.0 # Apache-2.0

View File

@ -47,7 +47,7 @@ deps = -r{toxinidir}/requirements.txt
commands = nosetests --exclude=mysql --cover-package=quark --cover-erase {posargs}
[testenv:docs]
commands = sphinx-build -W -b html docs/source docs/build/html
commands = sphinx-build -W -b html doc/source doc/build/html
[testenv:mysql]
commands = nosetests --where=quark/tests/functional/mysql {posargs}