Skip to content

Commit 5c8bbaa

Browse files
committed
Add tox -e functional
Provide a tox -e functional stub, as a place for functional tests to migrate to. This will allow us to write a zuul test configuration for this environment. Part of bp:functional-tests-for-nova Change-Id: I8a1107beab151f9bf574cfbae1d4dc18400fd74e
1 parent a22cece commit 5c8bbaa

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.testr.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \
33
OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \
44
OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-160} \
5-
${PYTHON:-python} -m subunit.run discover -t ./ ./nova/tests $LISTOPT $IDOPTION
5+
${PYTHON:-python} -m subunit.run discover -t ./ ${OS_TEST_PATH:-./nova/tests} $LISTOPT $IDOPTION
66

77
test_id_option=--load-list $IDFILE
88
test_list_option=--list

nova/tests/functional/__init__.py

Whitespace-only changes.

tox.ini

+11
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@ downloadcache = ~/cache/pip
2828
commands =
2929
flake8 {posargs}
3030

31+
[testenv:functional]
32+
usedevelop = True
33+
install_command = pip install -U --force-reinstall {opts} {packages}
34+
setenv = VIRTUAL_ENV={envdir}
35+
OS_TEST_PATH=./nova/tests/functional
36+
deps = -r{toxinidir}/requirements.txt
37+
-r{toxinidir}/test-requirements.txt
38+
commands =
39+
find . -type f -name "*.pyc" -delete
40+
bash tools/pretty_tox.sh '{posargs}'
41+
3142
[testenv:genconfig]
3243
commands =
3344
bash tools/config/generate_sample.sh -b . -p nova -o etc/nova

0 commit comments

Comments
 (0)