64e9cfa240
Here we are fixing 2 bugs: - Add missing SSH port for review.o.o - Allow tox to read SSH_AUTH_SOCK, so we don't prompt for SSH private key more then once. Change-Id: Ia3f1205b5169df7af67926810bd298cd25716b26 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
25 lines
453 B
INI
25 lines
453 B
INI
[tox]
|
|
envlist = pyflakes, pep8, py27
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:pyflakes]
|
|
deps = pyflakes
|
|
commands = pyflakes setup.py scripts
|
|
|
|
[testenv:pep8]
|
|
whitelist_externals = bash
|
|
commands = flake8
|
|
|
|
[testenv:cireport]
|
|
passenv =
|
|
SSH_AUTH_SOCK
|
|
commands = python scripts/tripleo-jobs-gerrit.py {posargs}
|