@@ -15,6 +15,7 @@ import (
15
15
)
16
16
17
17
func TestEnvironmentNewWithOptionalParams (t * testing.T ) {
18
+ t .Skip ("skipped: tests are disabled for the time being" )
18
19
baseURL := "http://localhost:4010"
19
20
if envURL , ok := os .LookupEnv ("TEST_API_BASE_URL" ); ok {
20
21
baseURL = envURL
@@ -86,6 +87,7 @@ func TestEnvironmentNewWithOptionalParams(t *testing.T) {
86
87
}
87
88
88
89
func TestEnvironmentGetWithOptionalParams (t * testing.T ) {
90
+ t .Skip ("skipped: tests are disabled for the time being" )
89
91
baseURL := "http://localhost:4010"
90
92
if envURL , ok := os .LookupEnv ("TEST_API_BASE_URL" ); ok {
91
93
baseURL = envURL
@@ -110,6 +112,7 @@ func TestEnvironmentGetWithOptionalParams(t *testing.T) {
110
112
}
111
113
112
114
func TestEnvironmentUpdate (t * testing.T ) {
115
+ t .Skip ("skipped: tests are disabled for the time being" )
113
116
baseURL := "http://localhost:4010"
114
117
if envURL , ok := os .LookupEnv ("TEST_API_BASE_URL" ); ok {
115
118
baseURL = envURL
@@ -136,6 +139,7 @@ func TestEnvironmentUpdate(t *testing.T) {
136
139
}
137
140
138
141
func TestEnvironmentListWithOptionalParams (t * testing.T ) {
142
+ t .Skip ("skipped: tests are disabled for the time being" )
139
143
baseURL := "http://localhost:4010"
140
144
if envURL , ok := os .LookupEnv ("TEST_API_BASE_URL" ); ok {
141
145
baseURL = envURL
@@ -173,6 +177,7 @@ func TestEnvironmentListWithOptionalParams(t *testing.T) {
173
177
}
174
178
175
179
func TestEnvironmentDeleteWithOptionalParams (t * testing.T ) {
180
+ t .Skip ("skipped: tests are disabled for the time being" )
176
181
baseURL := "http://localhost:4010"
177
182
if envURL , ok := os .LookupEnv ("TEST_API_BASE_URL" ); ok {
178
183
baseURL = envURL
@@ -198,6 +203,7 @@ func TestEnvironmentDeleteWithOptionalParams(t *testing.T) {
198
203
}
199
204
200
205
func TestEnvironmentNewFromProjectWithOptionalParams (t * testing.T ) {
206
+ t .Skip ("skipped: tests are disabled for the time being" )
201
207
baseURL := "http://localhost:4010"
202
208
if envURL , ok := os .LookupEnv ("TEST_API_BASE_URL" ); ok {
203
209
baseURL = envURL
@@ -270,6 +276,7 @@ func TestEnvironmentNewFromProjectWithOptionalParams(t *testing.T) {
270
276
}
271
277
272
278
func TestEnvironmentNewLogsTokenWithOptionalParams (t * testing.T ) {
279
+ t .Skip ("skipped: tests are disabled for the time being" )
273
280
baseURL := "http://localhost:4010"
274
281
if envURL , ok := os .LookupEnv ("TEST_API_BASE_URL" ); ok {
275
282
baseURL = envURL
@@ -294,6 +301,7 @@ func TestEnvironmentNewLogsTokenWithOptionalParams(t *testing.T) {
294
301
}
295
302
296
303
func TestEnvironmentMarkActiveWithOptionalParams (t * testing.T ) {
304
+ t .Skip ("skipped: tests are disabled for the time being" )
297
305
baseURL := "http://localhost:4010"
298
306
if envURL , ok := os .LookupEnv ("TEST_API_BASE_URL" ); ok {
299
307
baseURL = envURL
@@ -322,6 +330,7 @@ func TestEnvironmentMarkActiveWithOptionalParams(t *testing.T) {
322
330
}
323
331
324
332
func TestEnvironmentStartWithOptionalParams (t * testing.T ) {
333
+ t .Skip ("skipped: tests are disabled for the time being" )
325
334
baseURL := "http://localhost:4010"
326
335
if envURL , ok := os .LookupEnv ("TEST_API_BASE_URL" ); ok {
327
336
baseURL = envURL
@@ -346,6 +355,7 @@ func TestEnvironmentStartWithOptionalParams(t *testing.T) {
346
355
}
347
356
348
357
func TestEnvironmentStopWithOptionalParams (t * testing.T ) {
358
+ t .Skip ("skipped: tests are disabled for the time being" )
349
359
baseURL := "http://localhost:4010"
350
360
if envURL , ok := os .LookupEnv ("TEST_API_BASE_URL" ); ok {
351
361
baseURL = envURL
0 commit comments