We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68d1ef7 commit 0e1d093Copy full SHA for 0e1d093
testutil/timing.go
@@ -5,10 +5,12 @@ import (
5
"testing"
6
)
7
8
-// For the time-being, we can't run timing-sensitive tests in CI because of the
+// We can't run timing-sensitive tests in CI because of the
9
// great variance in runner performance. Instead of not testing timing at all,
10
-// we relegate it to the human to manually run the timing test on a
11
-// consistent machine from time to time.
+// we relegate it to humans manually running certain tests with the "-timing"
+// flag from time to time.
12
+//
13
+// Eventually, we should run all timing tests in a self-hosted runner.
14
15
var timingFlag = flag.Bool("timing", false, "run timing-sensitive tests")
16
0 commit comments