Skip to content

Commit 8bcf183

Browse files
committed
fix(ci): Bump tests timeout to 20m
Signed-off-by: spbsoluble <[email protected]>
1 parent 299d131 commit 8bcf183

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/tests.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
- name: Run tests
8282
run: |
8383
export KFUTIL_DEBUG=1
84-
go test -v ./cmd -run "^Test_StoreTypes*"
84+
go test -timeout 20m -v ./cmd -run "^Test_StoreTypes*"
8585
8686
### Store Tests
8787
Test_Stores_KFC_10_5_0:
@@ -116,7 +116,7 @@ jobs:
116116
git config --global url."https://$GITHUB_TOKEN:[email protected]/".insteadOf "https://github.com/"
117117
118118
- name: Run tests
119-
run: go test -v ./cmd -run "^Test_Stores_*"
119+
run: go test -timeout 20m -v ./cmd -run "^Test_Stores_*"
120120

121121
### PAM Tests
122122
Test_PAM_KFC_10_5_0:
@@ -153,7 +153,7 @@ jobs:
153153
- name: Run tests
154154
run: |
155155
unset KFUTIL_DEBUG
156-
go test -v ./cmd -run "^Test_PAM*"
156+
go test -timeout 20m -v ./cmd -run "^Test_PAM*"
157157
158158
### PAM Tests AKV Auth Provider
159159
Test_AKV_PAM_KFC_10_5_0:
@@ -193,7 +193,7 @@ jobs:
193193
194194
- name: Run tests
195195
run: |
196-
go test -v ./cmd -run "^Test_PAM*"
196+
go test -timeout 20m -v ./cmd -run "^Test_PAM*"
197197
198198

199199
# ## KFC 11.x.x
@@ -226,7 +226,7 @@ jobs:
226226
# - name: Run tests
227227
# run: |
228228
# unset KFUTIL_DEBUG
229-
# go test -v ./cmd -run "^Test_StoreTypes*"
229+
# go test -timeout 20m -v ./cmd -run "^Test_StoreTypes*"
230230
#
231231
#
232232
# ### Store Tests
@@ -250,7 +250,7 @@ jobs:
250250
# run: |
251251
# git config --global url."https://$GITHUB_TOKEN:[email protected]/".insteadOf "https://github.com/"
252252
# - name: Run tests
253-
# run: go test -v ./cmd -run "^Test_Stores_*"
253+
# run: go test -timeout 20m -v ./cmd -run "^Test_Stores_*"
254254
#
255255
# ### PAM Tests
256256
# Test_PAM_KFC_11_1_2:
@@ -275,7 +275,7 @@ jobs:
275275
# - name: Run tests
276276
# run: |
277277
# unset KFUTIL_DEBUG
278-
# go test -v ./cmd -run "^Test_PAM*"
278+
# go test -timeout 20m -v ./cmd -run "^Test_PAM*"
279279
#
280280
#
281281
# ### PAM Tests AKV Auth Provider
@@ -306,7 +306,7 @@ jobs:
306306
# make install
307307
# - name: Run tests
308308
# run: |
309-
# go test -v ./cmd -run "^Test_PAM*"
309+
# go test -timeout 20m -v ./cmd -run "^Test_PAM*"
310310

311311
## KFC 12.x.x
312312
kf_12_x_x:
@@ -365,7 +365,7 @@ jobs:
365365
# - name: Run tests
366366
# run: |
367367
# unset KFUTIL_DEBUG
368-
# go test -v ./cmd -run "^Test_StoreTypes*"
368+
# go test -timeout 20m -v ./cmd -run "^Test_StoreTypes*"
369369

370370
Test_StoreTypes_KFC_12_3_0_OAUTH:
371371
runs-on: kfutil-runner-set
@@ -401,7 +401,7 @@ jobs:
401401
- name: Run tests
402402
run: |
403403
unset KFUTIL_DEBUG
404-
go test -v ./cmd -run "^Test_StoreTypes*"
404+
go test -timeout 20m -v ./cmd -run "^Test_StoreTypes*"
405405
406406
### Store Tests
407407
# Test_Stores_KFC_12_3_0:
@@ -435,7 +435,7 @@ jobs:
435435
# git config --global url."https://$GITHUB_TOKEN:[email protected]/".insteadOf "https://github.com/"
436436
#
437437
# - name: Run tests
438-
# run: go test -v ./cmd -run "^Test_Stores_*"
438+
# run: go test -timeout 20m -v ./cmd -run "^Test_Stores_*"
439439
Test_Stores_KFC_12_3_0_OAUTH:
440440
runs-on: kfutil-runner-set
441441
needs:
@@ -469,7 +469,7 @@ jobs:
469469
git config --global url."https://$GITHUB_TOKEN:[email protected]/".insteadOf "https://github.com/"
470470
471471
- name: Run tests
472-
run: go test -v ./cmd -run "^Test_Stores_*"
472+
run: go test -timeout 20m -v ./cmd -run "^Test_Stores_*"
473473

474474
### PAM Tests
475475
# Test_PAM_KFC_12_3_0:
@@ -505,7 +505,7 @@ jobs:
505505
# - name: Run tests
506506
# run: |
507507
# unset KFUTIL_DEBUG
508-
# go test -v ./cmd -run "^Test_PAM*"
508+
# go test -timeout 20m -v ./cmd -run "^Test_PAM*"
509509

510510
Test_PAM_KFC_12_3_0_OAUTH:
511511
runs-on: self-hosted
@@ -542,7 +542,7 @@ jobs:
542542
- name: Run tests
543543
run: |
544544
unset KFUTIL_DEBUG
545-
go test -v ./cmd -run "^Test_PAM*"
545+
go test -timeout 20m -v ./cmd -run "^Test_PAM*"
546546
547547
548548
### PAM Tests AKV Auth Provider
@@ -582,7 +582,7 @@ jobs:
582582
# make install
583583
# - name: Run tests
584584
# run: |
585-
# go test -v ./cmd -run "^Test_PAM*"
585+
# go test -timeout 20m -v ./cmd -run "^Test_PAM*"
586586

587587
Test_AKV_PAM_KFC_12_3_0_OAUTH:
588588
runs-on: self-hosted
@@ -621,7 +621,7 @@ jobs:
621621
622622
- name: Run tests
623623
run: |
624-
go test -v ./cmd -run "^Test_PAM*"
624+
go test -timeout 20m -v ./cmd -run "^Test_PAM*"
625625
626626
# Tester Install Script
627627
Test_Install_Script:
@@ -666,4 +666,4 @@ jobs:
666666

667667
# Run the tests with coverage found in the pkg directory
668668
- name: Run tests
669-
run: go test -v -cover ./pkg/...
669+
run: go test -timeout 20m -v -cover ./pkg/...

0 commit comments

Comments
 (0)