e2e: Set ARC_E2E_SKIP_RUNNERDEPLOYMENT to skip RunnerDeployment test

This commit is contained in:
Yusuke Kuoka 2022-08-26 01:48:54 +00:00
parent 5c1be3265b
commit dbd668ae2d
1 changed files with 4 additions and 0 deletions

View File

@ -240,6 +240,10 @@ func TestE2E(t *testing.T) {
}) })
t.Run("RunnerDeployments", func(t *testing.T) { t.Run("RunnerDeployments", func(t *testing.T) {
if os.Getenv("ARC_E2E_SKIP_RUNNERDEPLOYMENT") != "" {
t.Skip("RunnerSets test has been skipped due to ARC_E2E_SKIP_RUNNERSETS")
}
var ( var (
testID string testID string
) )