TestSuiteConfig contains configuration for specific RIME tests in the test suite, configures which test categories to run, and configures the overall test sensitivity settings.
| 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] |
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)