// RunEnv encapsulates the context for this test run.
// RunParams encapsulates the runtime parameters for this test.
TestPlan string `json:"plan"`
TestCase string `json:"case"`
TestRun string `json:"run"`
TestRepo string `json:"repo,omitempty"`
TestCommit string `json:"commit,omitempty"`
TestBranch string `json:"branch,omitempty"`
TestTag string `json:"tag,omitempty"`
TestOutputsPath string `json:"outputs_path,omitempty"`
TestInstanceCount int `json:"instances"`
TestInstanceRole string `json:"role,omitempty"`
TestInstanceParams map[string]string `json:"params,omitempty"`
TestGroupID string `json:"group,omitempty"`
TestGroupInstanceCount int `json:"group_instances,omitempty"`
// true if the test has access to the sidecar.
TestSidecar bool `json:"test_sidecar,omitempty"`
// The subnet on which this test is running.
// The test instance can use this to pick an IP address and/or determine
// the "data" network interface.
TestSubnet *IPNet `json:"network,omitempty"`
TestStartTime time.Time `json:"start_time,omitempty"`