4faf54e2c2
Create Makefile and recreate conf.py using sphinx-quickstart Add _build to gitignore Fix several nits in rst files Add tox environment for docs building. Now docs may be built by running `tox -edoc' Change-Id: Ib0eb17047e583bdf3ac9111e117f908340f4d5ef
46 lines
1023 B
INI
46 lines
1023 B
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = py26,py27,pep8
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
LANG=en_US.UTF-8
|
|
LANGUAGE=en_US:en
|
|
LC_ALL=C
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
install_command = pip install -U {opts} {packages}
|
|
usedevelop = True
|
|
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
|
distribute = false
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
distribute = false
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:cli]
|
|
commands = python -m unittest tests_ci.test_cli
|
|
|
|
[testenv:cover]
|
|
commands = python setup.py testr --coverage --testr-args='{posargs}'
|
|
|
|
[testenv:doc]
|
|
changedir = doc/source
|
|
commands = make html
|
|
|
|
[tox:jenkins]
|
|
downloadcache = ~/cache/pip
|
|
|
|
[flake8]
|
|
ignore = E126,H703
|
|
show-source = true
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools,*rally/verification/verifiers/tempest/openstack-tempest*,build,*rally/openstack*
|
|
|
|
[hacking]
|
|
import_exceptions = rally.openstack.common.gettextutils._
|