X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/949e4651a74241a184c1c63c59d7533b86f2dc52..570e4e953abc93ee6c9a3fc951854be615ff169a:/lib/controller/integration_test.go diff --git a/lib/controller/integration_test.go b/lib/controller/integration_test.go index db1f7f0d0c..44c99bf30f 100644 --- a/lib/controller/integration_test.go +++ b/lib/controller/integration_test.go @@ -37,11 +37,6 @@ type IntegrationSuite struct { } func (s *IntegrationSuite) SetUpSuite(c *check.C) { - if forceLegacyAPI14 { - c.Skip("heavy integration tests don't run with forceLegacyAPI14") - return - } - cwd, _ := os.Getwd() s.oidcprovider = arvadostest.NewOIDCProvider(c) @@ -118,6 +113,8 @@ func (s *IntegrationSuite) SetUpSuite(c *check.C) { ClientSecret: ` + s.oidcprovider.ValidClientSecret + ` EmailClaim: email EmailVerifiedClaim: email_verified + AcceptAccessToken: true + AcceptAccessTokenScope: "" ` } else { yaml += ` @@ -135,8 +132,9 @@ func (s *IntegrationSuite) SetUpSuite(c *check.C) { tc := boot.NewTestCluster( filepath.Join(cwd, "..", ".."), id, cfg, "127.0.0."+id[3:], c.Log) + tc.Super.NoWorkbench1 = true + tc.Start() s.testClusters[id] = tc - s.testClusters[id].Start() } for _, tc := range s.testClusters { ok := tc.WaitReady()