Skip to content

Commit

Permalink
Increase CPU limits for some stability tests (#398)
Browse files Browse the repository at this point in the history
Bump CPU limits for SAPM traces and OC metrics stability tests to align with the unstable CircleCI environment and avoid sporadic stability tests failures like these: #369 , #354
  • Loading branch information
dmitryax authored Jul 7, 2020
1 parent 3ae0f00 commit 3df6a48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testbed/stabilitytests/metric_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestStabilityMetricsOpenCensus(t *testing.T) {
testbed.NewOCMetricDataSender(testbed.DefaultHost, testbed.GetAvailablePort(t)),
testbed.NewOCDataReceiver(testbed.GetAvailablePort(t)),
testbed.ResourceSpec{
ExpectedMaxCPU: 45,
ExpectedMaxCPU: 50,
ExpectedMaxRAM: 86,
ResourceCheckPeriod: resourceCheckPeriod,
},
Expand Down
2 changes: 1 addition & 1 deletion testbed/stabilitytests/trace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func TestStabilityTracesSAPM(t *testing.T) {
datasenders.NewSapmDataSender(testbed.GetAvailablePort(t)),
datareceivers.NewSapmDataReceiver(testbed.GetAvailablePort(t)),
testbed.ResourceSpec{
ExpectedMaxCPU: 24,
ExpectedMaxCPU: 28,
ExpectedMaxRAM: 100,
ResourceCheckPeriod: resourceCheckPeriod,
},
Expand Down

0 comments on commit 3df6a48

Please sign in to comment.