IsScaleTestWorkspace checks if a workspace name indicates it was created for scale testing.
(workspaceName, ownerName string)
| 59 | |
| 60 | // IsScaleTestWorkspace checks if a workspace name indicates it was created for scale testing. |
| 61 | func IsScaleTestWorkspace(workspaceName, ownerName string) bool { |
| 62 | return strings.HasPrefix(workspaceName, ScaleTestPrefix+"-") || |
| 63 | strings.HasPrefix(ownerName, ScaleTestPrefix+"-") |
| 64 | } |
no outgoing calls
no test coverage detected