github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_execution_result.go (about) 1 /* 2 * Testkube API 3 * 4 * Testkube provides a Kubernetes-native framework for test definition, execution and results 5 * 6 * API version: 1.0.0 7 * Contact: testkube@kubeshop.io 8 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 9 */ 10 package testkube 11 12 // execution result returned from executor 13 type ExecutionResult struct { 14 Status *ExecutionStatus `json:"status"` 15 // RAW Test execution output, depends of reporter used in particular tool 16 Output string `json:"output,omitempty"` 17 // output type depends of reporter used in particular tool 18 OutputType string `json:"outputType,omitempty"` 19 // error message when status is error, separate to output as output can be partial in case of error 20 ErrorMessage string `json:"errorMessage,omitempty"` 21 // execution steps (for collection of requests) 22 Steps []ExecutionStepResult `json:"steps,omitempty"` 23 Reports *ExecutionResultReports `json:"reports,omitempty"` 24 }