This commit is contained in:
Martin Kopec 2016-08-26 16:52:54 +02:00
parent 6c8c2b3208
commit 025a025033
3 changed files with 8 additions and 16 deletions

14
.gitignore vendored
View File

@ -1,7 +1,5 @@
*.py[cod] *.py[cod]
*.pyc
# C extensions
*.so
# Packages # Packages
*.egg* *.egg*
@ -30,18 +28,10 @@ nosetests.xml
.testrepository .testrepository
.venv .venv
# Translations
*.mo
# Mr Developer # Mr Developer
.mr.developer.cfg
.project .project
.pydevproject .pydevproject
# Complexity
output/*.html
output/*/index.html
# Sphinx # Sphinx
doc/build doc/build
@ -55,4 +45,4 @@ ChangeLog
.*sw? .*sw?
# Files created by releasenotes build # Files created by releasenotes build
releasenotes/build releasenotes/build

View File

@ -1,4 +1,4 @@
[gerrit] [gerrit]
host=review.openstack.org host=review.gerrithub.io
port=29418 port=29418
project=openstack/tempest_config_tool.git project=openstack/tempest_config_tool.git

View File

@ -5,10 +5,12 @@ skipsdist = True
[testenv] [testenv]
usedevelop = True 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 = setenv =
VIRTUAL_ENV={envdir} 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}' commands = python setup.py test --slowest --testr-args='{posargs}'
[testenv:pep8] [testenv:pep8]
@ -21,7 +23,7 @@ commands = {posargs}
commands = python setup.py test --coverage --testr-args='{posargs}' commands = python setup.py test --coverage --testr-args='{posargs}'
[testenv:docs] [testenv:docs]
commands = python setup.py build_sphinx commands = python setup.py build_sphinx {posargs}
[testenv:releasenotes] [testenv:releasenotes]
commands = commands =