aboutsummaryrefslogtreecommitdiffstats
path: root/.testr.conf
blob: 126233527ea2ec48e34fdcf870363ec0c6c34254 (plain)
1
2
3
4
[DEFAULT]
test_command=OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 ${PYTHON:-python} -m subunit.run discover -t ./ ./tests/unit $LISTOPT $IDOPTION
test_id_option=--load-list $IDFILE
test_list_option=--list
e at # http://www.apache.org/licenses/LICENSE-2.0 # ############################################################################ from yardstick.benchmark.core.testcase import Testcase from yardstick.benchmark.core import Param from api.utils import common as common_utils def default(args): return listAllTestcases(args) def listAllTestcases(args): param = Param(args) testcase_list = Testcase().list_all(param) return common_utils.result_handler(1, testcase_list)