@@ -20,8 +20,6 @@ func TestRunFiles_Integration(t *testing.T) {
20
20
ctx := context .Background ()
21
21
22
22
t .Run ("Run k6 with simple script" , func (t * testing.T ) {
23
- t .Parallel ()
24
-
25
23
tempDir , err := os .MkdirTemp ("" , "*" )
26
24
assert .NoErrorf (t , err , "failed to create temp dir: %v" , err )
27
25
defer os .RemoveAll (tempDir )
@@ -53,8 +51,6 @@ func TestRunFiles_Integration(t *testing.T) {
53
51
})
54
52
55
53
t .Run ("Run k6 with simple failing script" , func (t * testing.T ) {
56
- t .Parallel ()
57
-
58
54
tempDir , err := os .MkdirTemp ("" , "*" )
59
55
assert .NoErrorf (t , err , "failed to create temp dir: %v" , err )
60
56
defer os .RemoveAll (tempDir )
@@ -86,8 +82,6 @@ func TestRunFiles_Integration(t *testing.T) {
86
82
})
87
83
88
84
t .Run ("Run k6 with arguments and simple script" , func (t * testing.T ) {
89
- t .Parallel ()
90
-
91
85
tempDir , err := os .MkdirTemp ("" , "*" )
92
86
assert .NoErrorf (t , err , "failed to create temp dir: %v" , err )
93
87
defer os .RemoveAll (tempDir )
@@ -123,8 +117,6 @@ func TestRunFiles_Integration(t *testing.T) {
123
117
})
124
118
125
119
t .Run ("Run k6 with ENV variables and script" , func (t * testing.T ) {
126
- t .Parallel ()
127
-
128
120
tempDir , err := os .MkdirTemp ("" , "*" )
129
121
assert .NoErrorf (t , err , "failed to create temp dir: %v" , err )
130
122
defer os .RemoveAll (tempDir )
@@ -159,7 +151,6 @@ func TestRunFiles_Integration(t *testing.T) {
159
151
160
152
func TestRunAdvanced_Integration (t * testing.T ) {
161
153
test .IntegrationTest (t )
162
- t .Parallel ()
163
154
164
155
ctx := context .Background ()
165
156
@@ -197,8 +188,6 @@ func TestRunAdvanced_Integration(t *testing.T) {
197
188
})
198
189
199
190
t .Run ("Run k6 with checks and thresholds" , func (t * testing.T ) {
200
- t .Parallel ()
201
-
202
191
tempDir , err := os .MkdirTemp ("" , "*" )
203
192
assert .NoErrorf (t , err , "failed to create temp dir: %v" , err )
204
193
defer os .RemoveAll (tempDir )
@@ -233,7 +222,6 @@ func TestRunAdvanced_Integration(t *testing.T) {
233
222
234
223
func TestRunDirs_Integtaion (t * testing.T ) {
235
224
test .IntegrationTest (t )
236
- t .Parallel ()
237
225
238
226
ctx := context .Background ()
239
227
// setup
@@ -292,7 +280,6 @@ func TestRunDirs_Integtaion(t *testing.T) {
292
280
293
281
func TestRunErrors_Integration (t * testing.T ) {
294
282
test .IntegrationTest (t )
295
- t .Parallel ()
296
283
297
284
ctx := context .Background ()
298
285
@@ -329,8 +316,6 @@ func TestRunErrors_Integration(t *testing.T) {
329
316
})
330
317
331
318
t .Run ("Run k6 with invalid arguments" , func (t * testing.T ) {
332
- t .Parallel ()
333
-
334
319
tempDir , err := os .MkdirTemp ("" , "*" )
335
320
assert .NoErrorf (t , err , "failed to create temp dir: %v" , err )
336
321
defer os .RemoveAll (tempDir )
@@ -365,8 +350,6 @@ func TestRunErrors_Integration(t *testing.T) {
365
350
})
366
351
367
352
t .Run ("Run k6 from directory with missing script arg" , func (t * testing.T ) {
368
- t .Parallel ()
369
-
370
353
tempDir , err := os .MkdirTemp ("" , "*" )
371
354
assert .NoErrorf (t , err , "failed to create temp dir: %v" , err )
372
355
defer os .RemoveAll (tempDir )
0 commit comments