Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion test/cmd/aro-hcp-tests/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ func setupCli() *cobra.Command {
// specs = specs.AddLabel("SLOW")

// Specs can be globally filtered...
// specs = specs.MustFilter([]string{`name.contains("filter")`})
// TODO: remove after manual testing
specs = specs.MustFilter([]string{`name.contains("shoebox")`})

// Or walked...
// specs = specs.Walk(func(spec *extensiontests.ExtensionTestSpec) {
Expand Down
4 changes: 4 additions & 0 deletions test/e2e/shoebox_logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ var _ = Describe("Customer", func() {
)
Expect(err).NotTo(HaveOccurred())

By("sleeping for 1 hour to allow manual testing")
GinkgoLogr.Info("cluster created, sleeping for 1 hour for manual testing")
time.Sleep(1 * time.Hour)

subscriptionID, err := tc.SubscriptionID(ctx)
Expect(err).NotTo(HaveOccurred())

Expand Down
Loading