blob: 9d728edb59ffacad4a54461e0e90bf823adb3e13 [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package test_platform.skylab_test_runner.steps;
option go_package = "go.chromium.org/chromiumos/infra/proto/go/test_platform/skylab_test_runner/steps";
import "test_platform/skylab_test_runner/config.proto";
import "test_platform/skylab_test_runner/request.proto";
// RunTestsRequest is the input for the Go-based replacement of test_runner.
message RunTestsRequest {
test_platform.skylab_test_runner.Request request = 1;
test_platform.skylab_test_runner.Config config = 2;
}
// RunTestsResponse is the output from the Go-based replacement of test_runner.
message RunTestsResponse {
// A markdown string that should be used in Buildbucket as a summary of the
// test_runner build.
string error_summary_markdown = 1;
}