github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_running_context_extended.go (about) 1 package testkube 2 3 type RunningContextType string 4 5 const ( 6 RunningContextTypeUserCLI RunningContextType = "user-cli" 7 RunningContextTypeUserUI RunningContextType = "user-ui" 8 RunningContextTypeTestSuite RunningContextType = "testsuite" 9 RunningContextTypeTestTrigger RunningContextType = "testtrigger" 10 RunningContextTypeScheduler RunningContextType = "scheduler" 11 RunningContextTypeTestExecution RunningContextType = "testexecution" 12 RunningContextTypeTestSuiteExecution RunningContextType = "testsuiteexecution" 13 RunningContextTypeEmpty RunningContextType = "" 14 )