Skip to content

Commit

Permalink
Remove accidental dependency on Nexus
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Nov 3, 2023
1 parent f35a700 commit 65c9471
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/e2e/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"os"
"path/filepath"
"testing"
"time"

ott "github.com/opendevstack/ods-pipeline/pkg/odstasktest"
ttr "github.com/opendevstack/ods-pipeline/pkg/tektontaskrun"
Expand All @@ -31,7 +32,11 @@ func testMain(m *testing.M) int {
}
nc, cleanup, err := ttr.SetupTempNamespace(
cc,
ott.StartNexus(),
// Sleep until timing issue is solved
func(cc *ttr.ClusterConfig, nc *ttr.NamespaceConfig) error {
time.Sleep(time.Minute)
return nil
},
ott.InstallODSPipeline(nil),
ttr.InstallTaskFromPath(
filepath.Join(rootPath, "build/tasks/render.yaml"),
Expand Down

0 comments on commit 65c9471

Please sign in to comment.