From f6b2b52c6da4a16bfb31ff53a4f86e30b3ffc2bd Mon Sep 17 00:00:00 2001 From: Ben Patterson Date: Thu, 18 Sep 2014 16:49:34 -0400 Subject: [PATCH] Add docstring info for test suite properties. --- pavelib/utils/test/suites/bokchoy_suite.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pavelib/utils/test/suites/bokchoy_suite.py b/pavelib/utils/test/suites/bokchoy_suite.py index 9fd3372d2e..29c545f6c5 100644 --- a/pavelib/utils/test/suites/bokchoy_suite.py +++ b/pavelib/utils/test/suites/bokchoy_suite.py @@ -18,6 +18,14 @@ __test__ = False # do not collect class BokChoyTestSuite(TestSuite): """ TestSuite for running Bok Choy tests + Properties (below is a subset): + test_dir - parent directory for tests + log_dir - directory for test output + report_dir - directory for reports (e.g., coverage) related to test execution + xunit_report - directory for xunit-style output (xml) + fasttest - when set, skip various set-up tasks (e.g., DB migrations) + test_spec - when set, specifies test files, classes, cases, etc. See platform doc. + default_store - modulestore to use when running tests (split or draft) """ def __init__(self, *args, **kwargs): super(BokChoyTestSuite, self).__init__(*args, **kwargs)