File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed
markus_autotesting_core/types Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,12 @@ class BaseTestData(
8181 """
8282
8383 category : Annotated [
84- list [Annotated [str , Meta (extra_json_schema = {"enum" : [], "enumNames" : []})]],
84+ list [
85+ Annotated [
86+ str ,
87+ Meta (extra_json_schema = {"$ref" : "#/definitions/test_data_categories" }),
88+ ]
89+ ],
8590 Meta (title = "Category" , extra_json_schema = {"uniqueItems" : True }),
8691 ]
8792
@@ -97,9 +102,13 @@ class BaseTestData(
97102 feedback_file_names : Annotated [list [str ], Meta (title = "Feedback files" )]
98103 """A list of file paths generated by executing this test group."""
99104
100- extra_info : dict = {}
101- """TODO"""
105+ extra_info : Annotated [
106+ Any , Meta (extra_json_schema = {"$ref" : "#/definitions/extra_group_data" })
107+ ] = {}
108+ """Additional information for this test group."""
102109
103110
104- AutotestFile = Annotated [str , Meta (extra_json_schema = {"enum" : []})]
111+ AutotestFile = Annotated [
112+ str , Meta (extra_json_schema = {"$ref" : "#/definitions/files_list" })
113+ ]
105114"""A placeholder in the JSON schema representing one of the files provided to the autotesting environment."""
You can’t perform that action at this time.
0 commit comments