78b27e3e60
1. Move setup_docker.sh to tools directory 2. Make a setup_gate.sh that installs necessary packages including docker and starts docker. 3. Add logging output. 4. Add default test timeout of 2 hours. 5. Add user to the docker group before running test cases. 6. Run image build as dockerroot group. This patch has to be one commit to fix the gate in one go. Co-Authored-By: Steven Dake <stdake@cisco.com> Change-Id: I83f3cdb1dabf0dfface589c581cb22c155467acc
54 lines
1.4 KiB
INI
54 lines
1.4 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = functional
|
|
|
|
[testenv]
|
|
install_command = pip install {opts} {packages}
|
|
|
|
[testenv:pep8]
|
|
deps = PyYAML
|
|
commands =
|
|
{toxinidir}/tools/validate-all-json.sh
|
|
{toxinidir}/tools/validate-all-yaml.sh
|
|
{toxinidir}/tools/validate-all-maintainer.sh
|
|
|
|
[testenv:bashate]
|
|
deps = bashate
|
|
whitelist_externals = bash
|
|
# tox improperly interprets # and {1} in regex, so match on [[:punct:]]+
|
|
commands =
|
|
bash -c "files=`egrep -rlI '^[[:punct:]]+!/(bin/|/usr/bin/env )(ba)?sh' .` && bashate $files"
|
|
|
|
[testenv:setupenv]
|
|
whitelist_externals = bash
|
|
commands = bash -c tests/setup_gate.sh
|
|
|
|
[testenv:images]
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
whitelist_externals = find
|
|
bash
|
|
sudo
|
|
commands =
|
|
find . -type f -name "*.pyc" -delete
|
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
|
sudo -g dockerroot testr run ^(test_images).*
|
|
|
|
[testenv:startenv]
|
|
whitelist_externals = bash
|
|
commands =
|
|
bash -c tools/genenv
|
|
sudo tools/kolla start
|
|
# this can be improved after https://review.openstack.org/#/c/180729/
|
|
# tools/test-deploy
|
|
|
|
[testenv:functional]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
whitelist_externals = find
|
|
bash
|
|
commands =
|
|
find . -type f -name "*.pyc" -delete
|
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
|
testr run ^(?!test_images).*
|