Skip to content

Commit a9bab2d

Browse files
Reduce the required timing on build tests to account for overlay
1 parent e02c56b commit a9bab2d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: test/extended/builds/build_timing.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ var _ = g.Describe("[Feature:Builds][timing] capture build stages and durations"
5555

5656
expectedBuildStages := make(map[string][]string)
5757
expectedBuildStages["FetchInputs"] = []string{"", "1000s"}
58-
expectedBuildStages["CommitContainer"] = []string{"1s", "1000s"}
59-
expectedBuildStages["Assemble"] = []string{"1s", "1000s"}
58+
expectedBuildStages["CommitContainer"] = []string{"10ms", "1000s"}
59+
expectedBuildStages["Assemble"] = []string{"10ms", "1000s"}
6060
expectedBuildStages["PostCommit"] = []string{"", "1000s"}
6161
expectedBuildStages["PushImage"] = []string{"1s", "1000s"}
6262

@@ -81,7 +81,7 @@ var _ = g.Describe("[Feature:Builds][timing] capture build stages and durations"
8181
expectedBuildStages["FetchInputs"] = []string{"", "1000s"}
8282
expectedBuildStages["CommitContainer"] = []string{"", "1000s"}
8383
expectedBuildStages["PullImages"] = []string{"", "1000s"}
84-
expectedBuildStages["Build"] = []string{"1s", "1000s"}
84+
expectedBuildStages["Build"] = []string{"10ms", "1000s"}
8585
expectedBuildStages["PostCommit"] = []string{"", "1000s"}
8686
expectedBuildStages["PushImage"] = []string{"1s", "1000s"}
8787

0 commit comments

Comments
 (0)