Skip to content

Commit 4f85193

Browse files
authored
Merge pull request #26 from ThreeDotsLabs/test-results
Suite results
2 parents a99b672 + d1d5eba commit 4f85193

File tree

4 files changed

+350
-170
lines changed

4 files changed

+350
-170
lines changed

trainings/api/protobuf/server.proto

+12
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,18 @@ message VerifyExerciseResponse {
112112
string verification_id = 6;
113113

114114
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;
115127
}
116128

117129
message GetSolutionFilesRequest {

0 commit comments

Comments
 (0)