We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a99b672 + d1d5eba commit 4f85193Copy full SHA for 4f85193
trainings/api/protobuf/server.proto
@@ -112,6 +112,18 @@ message VerifyExerciseResponse {
112
string verification_id = 6;
113
114
map<string, string> metadata = 7;
115
+
116
+ SuiteResult suite_result = 11;
117
+}
118
119
+message SuiteResult {
120
+ repeated ScenarioResult scenarios = 1;
121
122
123
+message ScenarioResult {
124
+ string name = 1;
125
+ bool failed = 2;
126
+ string logs = 3;
127
}
128
129
message GetSolutionFilesRequest {
0 commit comments