Skip to content
Merged
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
2 changes: 1 addition & 1 deletion integration/add_inventory_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func Test_AddInventoryItems(t *testing.T) {
ctx, cancelFn := context.WithTimeout(context.Background(), 600*time.Second) // Set hard limit of 10 minutes
defer cancelFn()

stack := makeStack(t, ctx, &stackOpts{dbLogs: false, appLogs: true, debug: false}) // Modify logging options as required
stack := makeStack(t, ctx, &stackOpts{dbLogs: true, appLogs: true, debug: true}) // Modify logging options as required

// 4) Create Client
baseURL := stack.app.url()
Expand Down
1 change: 1 addition & 0 deletions integration/utils.go → integration/stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ func createCheckoutAppContainer(t *testing.T,
"BUILD_DATE": strPtr(os.Getenv("BUILD_DATE")),
"DIRTY": strPtr(os.Getenv("DIRTY")),
},
KeepImage: true, // keep image for faster rebuilds
}
} else {
req.Image = img.ID
Expand Down