2bdef592cd
The rhos-release repo is required to get through the rdo-manager install and overcloud deploy. These hard dependencies are removed from the scripts. The documentation, that covers both rhos-release and subscription manager usage, is split so that internal links were not shared with external documentation. Change-Id: Ia367c8c13d12280a3ad61a68520b4434bdd919df
26 lines
548 B
INI
26 lines
548 B
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
commands = sphinx-build -a -t external doc/source/ build/sphinx/html
|
|
sphinx-build -a -t internal doc/source/ build/sphinx/internal-html
|
|
|
|
[testenv:pep8]
|
|
deps = bashate
|
|
whitelist_externals = bash
|
|
commands = bash -c "find scripts -type f | xargs bashate -v"
|
|
|
|
[flake8]
|
|
ignore = H803
|
|
exclude = .tox
|