Skip to content

Commit

Permalink
Reduce the required timing on build tests to account for overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
smarterclayton committed Nov 26, 2017
1 parent e02c56b commit a9bab2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/extended/builds/build_timing.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ var _ = g.Describe("[Feature:Builds][timing] capture build stages and durations"

expectedBuildStages := make(map[string][]string)
expectedBuildStages["FetchInputs"] = []string{"", "1000s"}
expectedBuildStages["CommitContainer"] = []string{"1s", "1000s"}
expectedBuildStages["Assemble"] = []string{"1s", "1000s"}
expectedBuildStages["CommitContainer"] = []string{"10ms", "1000s"}
expectedBuildStages["Assemble"] = []string{"10ms", "1000s"}
expectedBuildStages["PostCommit"] = []string{"", "1000s"}
expectedBuildStages["PushImage"] = []string{"1s", "1000s"}

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

Expand Down

0 comments on commit a9bab2d

Please sign in to comment.