Skip to content

Commit 4be1123

Browse files
committed
[test] no parallel tests
Test to see if flakeyness goes away... ...and bump the timeout because we reduced parallel runs
1 parent fe3c251 commit 4be1123

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/workspace-integration-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ jobs:
186186
args+=( "-kubeconfig=/home/gitpod/.kube/config" )
187187
args+=( "-namespace=default" )
188188
[[ "$USERNAME" != "" ]] && args+=( "-username=$USERNAME" )
189-
args+=( "-timeout=60m" )
189+
args+=( "-timeout=90m" )
190190
191191
BASE_TESTS_DIR="$GITHUB_WORKSPACE/test/tests"
192192
CONTENT_SERVICE_TESTS="$BASE_TESTS_DIR/components/content-service"
@@ -218,7 +218,8 @@ jobs:
218218
fi
219219
220220
set +e
221-
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
221+
# running tests in parallel saves time, but is flakey.
222+
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
222223
RC=${PIPESTATUS[0]}
223224
set -e
224225

0 commit comments

Comments
 (0)