github.com/kubeshop/testkube@v1.17.23/pkg/cloud/data/testresult/commands.go (about)

     1  package testresult
     2  
     3  import "github.com/kubeshop/testkube/pkg/cloud/data/executor"
     4  
     5  const (
     6  	CmdTestResultGet                   executor.Command = "test_result_get"
     7  	CmdTestResultGetByNameAndTestSuite executor.Command = "test_result_get_by_name_and_test"
     8  	CmdTestResultGetLatestByTestSuite  executor.Command = "test_result_get_latest_by_test_suite"
     9  	CmdTestResultGetLatestByTestSuites executor.Command = "test_result_get_latest_by_test_suites"
    10  	CmdTestResultGetExecutionsTotals   executor.Command = "test_result_get_executions_totals"
    11  	CmdTestResultGetExecutions         executor.Command = "test_result_get_executions"
    12  	CmdTestResultInsert                executor.Command = "test_result_insert"
    13  	CmdTestResultUpdate                executor.Command = "test_result_update"
    14  	CmdTestResultStartExecution        executor.Command = "test_result_start_execution"
    15  	CmdTestResultEndExecution          executor.Command = "test_result_end_execution"
    16  	CmdTestResultDeleteByTestSuite     executor.Command = "test_result_delete_by_test_suite"
    17  	CmdTestResultDeleteAll             executor.Command = "test_result_delete_all"
    18  	CmdTestResultDeleteByTestSuites    executor.Command = "test_result_delete_by_test_suites"
    19  	CmdTestResultGetTestSuiteMetrics   executor.Command = "test_result_get_test_suite_metrics"
    20  )