Skip to content
Merged
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
8 changes: 6 additions & 2 deletions scaletest/workspacetraffic/run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ func TestRun(t *testing.T) {
t.Logf("bytes written total: %.0f\n", writeMetrics.Total())

// We want to ensure the metrics are somewhat accurate.
assert.InDelta(t, bytesPerTick, writeMetrics.Total(), 0.1)
// TODO: https://github.com/coder/coder/issues/11175
// assert.InDelta(t, bytesPerTick, writeMetrics.Total(), 0.1)

// Read is highly variable, depending on how far we read before stopping.
// Just ensure it's not zero.
assert.NotZero(t, readMetrics.Total())
Expand Down Expand Up @@ -259,7 +261,9 @@ func TestRun(t *testing.T) {
t.Logf("bytes written total: %.0f\n", writeMetrics.Total())

// We want to ensure the metrics are somewhat accurate.
assert.InDelta(t, bytesPerTick, writeMetrics.Total(), 0.1)
// TODO: https://github.com/coder/coder/issues/11175
// assert.InDelta(t, bytesPerTick, writeMetrics.Total(), 0.1)

// Read is highly variable, depending on how far we read before stopping.
// Just ensure it's not zero.
assert.NotZero(t, readMetrics.Total())
Expand Down