aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/repro
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-05-07 15:40:13 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-05-07 15:41:50 +0200
commit6c70a1c220c1011a5b0d6e612dcb67d6dc36e80a (patch)
tree63912998f08cd4579addb29a5e576f14a11dc235 /pkg/repro
parent413b991c26fa3ffadb04c4fe199dc3d1e1560232 (diff)
all: replace TRAVIS env var with CI
In preparation to running some tests as github actions. Both Travis and Github define CI env var, while TRAVIS is, well, too Travis-specific. Update #1699
Diffstat (limited to 'pkg/repro')
-rw-r--r--pkg/repro/repro_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/repro/repro_test.go b/pkg/repro/repro_test.go
index 37a938313..7cca35370 100644
--- a/pkg/repro/repro_test.go
+++ b/pkg/repro/repro_test.go
@@ -19,7 +19,7 @@ func initTest(t *testing.T) (*rand.Rand, int) {
iters = 100
}
seed := time.Now().UnixNano()
- if os.Getenv("TRAVIS") != "" {
+ if os.Getenv( "CI") != "" {
seed = 0 // required for deterministic coverage reports
}
rs := rand.NewSource(seed)