mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
read the CI timescale factor from an environment variable
This commit is contained in:
parent
cfc7d1604d
commit
56155986e9
3 changed files with 12 additions and 6 deletions
|
@ -4,6 +4,7 @@ import (
|
|||
"errors"
|
||||
"io"
|
||||
"runtime"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"os"
|
||||
|
@ -34,9 +35,10 @@ var _ = Describe("Stream", func() {
|
|||
// on the CIs, the timing is a lot less precise, so scale every duration by this factor
|
||||
scaleDuration := func(t time.Duration) time.Duration {
|
||||
scaleFactor := 1
|
||||
if os.Getenv("CI") == "true" {
|
||||
scaleFactor = 20
|
||||
if f, err := strconv.Atoi(os.Getenv("TIMESCALE_FACTOR")); err == nil { // parsing "" errors, so this works fine if the env is not set
|
||||
scaleFactor = f
|
||||
}
|
||||
Expect(scaleFactor).ToNot(BeZero())
|
||||
return time.Duration(scaleFactor) * t
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue