diff --git a/.gitignore b/.gitignore index 963e589a..99c9ee5b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,5 @@ *.py[cod] - -# C extensions -*.so +*.pyc # Packages *.egg* @@ -30,18 +28,10 @@ nosetests.xml .testrepository .venv -# Translations -*.mo - # Mr Developer -.mr.developer.cfg .project .pydevproject -# Complexity -output/*.html -output/*/index.html - # Sphinx doc/build @@ -55,4 +45,4 @@ ChangeLog .*sw? # Files created by releasenotes build -releasenotes/build \ No newline at end of file +releasenotes/build diff --git a/.gitreview b/.gitreview index 4c01c6af..b5627703 100644 --- a/.gitreview +++ b/.gitreview @@ -1,4 +1,4 @@ [gerrit] -host=review.openstack.org +host=review.gerrithub.io port=29418 project=openstack/tempest_config_tool.git diff --git a/tox.ini b/tox.ini index dd90af5b..2503c868 100644 --- a/tox.ini +++ b/tox.ini @@ -5,10 +5,12 @@ skipsdist = True [testenv] usedevelop = True -install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages} +install_command = pip install -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} -deps = -r{toxinidir}/test-requirements.txt +deps = + -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt commands = python setup.py test --slowest --testr-args='{posargs}' [testenv:pep8] @@ -21,7 +23,7 @@ commands = {posargs} commands = python setup.py test --coverage --testr-args='{posargs}' [testenv:docs] -commands = python setup.py build_sphinx +commands = python setup.py build_sphinx {posargs} [testenv:releasenotes] commands =