File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ jobs:
209
209
run : gotestsum --junitfile="gotests.xml" --packages="./..." --
210
210
-covermode=atomic -coverprofile="gotests.coverage"
211
211
-coverpkg=./...,github.com/coder/coder/codersdk
212
- -timeout=3m -count=$GOCOUNT -short -failfast
212
+ -timeout=5m -count=$GOCOUNT -short -failfast
213
213
214
214
- name : Upload DataDog Trace
215
215
if : always() && github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork
@@ -316,7 +316,7 @@ jobs:
316
316
deploy :
317
317
name : " deploy"
318
318
runs-on : ubuntu-latest
319
- timeout-minutes : 20
319
+ timeout-minutes : 30
320
320
if : github.ref == 'refs/heads/main' && !github.event.pull_request.head.repo.fork
321
321
permissions :
322
322
contents : read
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ test: test-clean
115
115
.PHONY : test-postgres
116
116
test-postgres : test-clean
117
117
DB=ci gotestsum --junitfile=" gotests.xml" --packages=" ./..." -- \
118
- -covermode =atomic -coverprofile="gotests.coverage" -timeout=5m \
118
+ -covermode =atomic -coverprofile="gotests.coverage" -timeout=10m \
119
119
-coverpkg=./...,github.com/coder/coder/codersdk \
120
120
-count=1 -parallel=1 -race -failfast
121
121
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ func TestServer(t *testing.T) {
56
56
assert .NoError (t , err )
57
57
client = codersdk .New (accessURL )
58
58
return true
59
- }, 15 * time .Second , 25 * time .Millisecond )
59
+ }, time .Minute , 50 * time .Millisecond )
60
60
_ , err = client .CreateFirstUser (ctx , codersdk.CreateFirstUserRequest {
61
61
Email : "some@one.com" ,
62
62
Username : "example" ,
You can’t perform that action at this time.
0 commit comments