Commit a4efe42 1 parent 8668f40 commit a4efe42 Copy full SHA for a4efe42
File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ import (
11
11
12
12
testutil "github.com/ipfs/go-ipfs/util/testutil"
13
13
ci "github.com/ipfs/go-ipfs/util/testutil/ci"
14
- jenkins "github.com/ipfs/go-ipfs/util/testutil/ci/jenkins"
15
- travis "github.com/ipfs/go-ipfs/util/testutil/ci/travis"
16
14
17
15
ma "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr"
18
16
manet "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multiaddr-net"
@@ -117,7 +115,7 @@ func TestDialWait(t *testing.T) {
117
115
defer s1 .Close ()
118
116
119
117
s1 .dialT = time .Millisecond * 300 // lower timeout for tests.
120
- if travis .IsRunning () {
118
+ if ci .IsRunning () {
121
119
s1 .dialT = time .Second
122
120
}
123
121
@@ -151,7 +149,7 @@ func TestDialWait(t *testing.T) {
151
149
152
150
func TestDialBackoff (t * testing.T ) {
153
151
// t.Skip("skipping for another test")
154
- if travis . IsRunning () || jenkins .IsRunning () {
152
+ if ci .IsRunning () {
155
153
t .Skip ("travis and jenkins will never have fun with this test" )
156
154
}
157
155
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ type EnvVar string
16
16
17
17
// Environment variables that TravisCI uses.
18
18
const (
19
- VarCI EnvVar = "TEST_NO_FUSE "
19
+ VarCI EnvVar = "CI "
20
20
VarNoFuse EnvVar = "TEST_NO_FUSE"
21
21
VarVerbose EnvVar = "TEST_VERBOSE"
22
22
)
You can’t perform that action at this time.
0 commit comments