File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,9 @@ func TestEventLogHTTP(t *testing.T) {
136
136
if testing .Short () {
137
137
t .Skip ("skipping integration test" )
138
138
}
139
+ if ShouldRunGCPOnlyTests () {
140
+ t .Skip ("skipping test that is not gcp only" )
141
+ }
139
142
140
143
httpAddr := randomPort ()
141
144
teardown := setupSkaffoldWithArgs (t , "--rpc-http-port" , httpAddr )
@@ -203,6 +206,9 @@ func TestGetStateRPC(t *testing.T) {
203
206
if testing .Short () {
204
207
t .Skip ("skipping integration test" )
205
208
}
209
+ if ShouldRunGCPOnlyTests () {
210
+ t .Skip ("skipping test that is not gcp only" )
211
+ }
206
212
207
213
rpcAddr := randomPort ()
208
214
// start a skaffold dev loop on an example
@@ -256,6 +262,9 @@ func TestGetStateHTTP(t *testing.T) {
256
262
if testing .Short () {
257
263
t .Skip ("skipping integration test" )
258
264
}
265
+ if ShouldRunGCPOnlyTests () {
266
+ t .Skip ("skipping test that is not gcp only" )
267
+ }
259
268
260
269
httpAddr := randomPort ()
261
270
teardown := setupSkaffoldWithArgs (t , "--rpc-http-port" , httpAddr )
You can’t perform that action at this time.
0 commit comments