Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.44 KB

File metadata and controls

32 lines (24 loc) · 1.44 KB

TestSuiteConfig

TestSuiteConfig contains configuration for specific RIME tests in the test suite, configures which test categories to run, and configures the overall test sensitivity settings.

Properties

Name Type Description Notes
global_test_sensitivity TestSensitivity [optional] [default to TestSensitivity.UNSPECIFIED]
individual_tests_config str A serialized JSON blob including a config for each test. [optional]
custom_tests List[str] A list of JSON custom test configurations. [optional]
global_exclude_columns List[str] Features to exclude from all tests. [optional]

Example

from ri.apiclient.models.test_suite_config import TestSuiteConfig

# TODO update the JSON string below
json = "{}"
# create an instance of TestSuiteConfig from a JSON string
test_suite_config_instance = TestSuiteConfig.from_json(json)
# print the JSON string representation of the object
print(TestSuiteConfig.to_json())

# convert the object into a dict
test_suite_config_dict = test_suite_config_instance.to_dict()
# create an instance of TestSuiteConfig from a dict
test_suite_config_from_dict = TestSuiteConfig.from_dict(test_suite_config_dict)

[Back to Model list] [Back to API list] [Back to README]