3a44e594ef
Change default image size to 2GB (align with devstack value) Store the virt-inspector output to reuse in virt-inspector calls Relax the size check to allow for system size change after updates and differences in base distribution Change-Id: I9aaaabcbe8a1332e57fd8f9f0649dc8cfc5b9977
30 lines
1.1 KiB
INI
30 lines
1.1 KiB
INI
[tox]
|
|
minversion = 1.8
|
|
envlist = bashate,docs,py27
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
install_command = pip install -U {opts} {packages}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
whitelist_externals = virt-filesystems
|
|
virt-inspector
|
|
awk
|
|
mkdir
|
|
rm
|
|
commands = mkdir -p {toxinidir}/.amp_tox_test
|
|
./diskimage-create.sh -o {toxinidir}/.amp_tox_test/amphora-x64-haproxy -w {toxworkdir}
|
|
# Work around tox limitations with command pipes
|
|
# https://bitbucket.org/hpk42/tox/issue/73/pipe-output-of-command-into-file
|
|
./image-tests.sh {toxinidir}/.amp_tox_test
|
|
rm -rf {toxinidir}/.amp_tox_test
|
|
|
|
[testenv:docs]
|
|
commands = doc8 README.rst ../elements/centos-mirror/README.rst ../elements/apt-mirror/README.rst ../elements/fedora-mirror/README.rst ../elements/haproxy-octavia/README.rst ../elements/root-passwd/README.rst
|
|
|
|
[testenv:bashate]
|
|
commands = bashate diskimage-create.sh
|
|
bashate image-tests.sh
|
|
|