File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ jobs:
174
174
args+=( "-kubeconfig=/home/gitpod/.kube/config" )
175
175
args+=( "-namespace=default" )
176
176
[[ "$USERNAME" != "" ]] && args+=( "-username=$USERNAME" )
177
- args+=( "-timeout=60m " )
177
+ args+=( "-timeout=90m " )
178
178
179
179
BASE_TESTS_DIR="$GITHUB_WORKSPACE/test/tests"
180
180
CONTENT_SERVICE_TESTS="$BASE_TESTS_DIR/components/content-service"
@@ -206,7 +206,8 @@ jobs:
206
206
fi
207
207
208
208
set +e
209
- go test -p 2 --parallel 2 -v ./... "${args[@]}" -run '.*[^.SerialOnly]$' 2>&1 | go-junit-report -subtest-mode=exclude-parents -set-exit-code -out "TEST-${TEST_NAME}-PARALLEL.xml" -iocopy
209
+ # running tests in parallel saves time, but is flakey.
210
+ go test -p 1 --parallel 1 -v ./... "${args[@]}" -run '.*[^.SerialOnly]$' 2>&1 | go-junit-report -subtest-mode=exclude-parents -set-exit-code -out "TEST-${TEST_NAME}-PARALLEL.xml" -iocopy
210
211
RC=${PIPESTATUS[0]}
211
212
set -e
212
213
You can’t perform that action at this time.
0 commit comments