fba7102ae4
As of the tox 2.5.0 release, failure to specify a default commands key in the fallback testenv section of tox.ini instantly fails with "ERROR: Commands not specified. Please update relevant section of .../tox.ini". Copy the testenv.commands entry from the openstack/cookiecutter repo's template. While at it, copy the boilerplate placeholder test from the cookiecutter templates so that jobs don't freak out when they discover (and then run) no tests. Change-Id: Ifb8fcfbb6d76edd8c7dcf814a705ee7eff3a9819
8 lines
319 B
Plaintext
8 lines
319 B
Plaintext
[DEFAULT]
|
|
test_command=OS_STDOUT_CAPTURE=${OS_STDOUT_CAPTURE:-1} \
|
|
OS_STDERR_CAPTURE=${OS_STDERR_CAPTURE:-1} \
|
|
OS_TEST_TIMEOUT=${OS_TEST_TIMEOUT:-60} \
|
|
${PYTHON:-python} -m subunit.run discover -t ./ . $LISTOPT $IDOPTION
|
|
test_id_option=--load-list $IDFILE
|
|
test_list_option=--list
|