Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1023 Bytes

UnitTestsConfig.md

File metadata and controls

31 lines (21 loc) · 1023 Bytes

UnitTestsConfig

Properties

Name Type Description Notes
enabled bool Enables unit tests for this application (default: true)
commands List[str] Commands to run unit tests

Example

from cloudharness_model.models.unit_tests_config import UnitTestsConfig

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

# convert the object into a dict
unit_tests_config_dict = unit_tests_config_instance.to_dict()
# create an instance of UnitTestsConfig from a dict
unit_tests_config_form_dict = unit_tests_config.from_dict(unit_tests_config_dict)

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