Skip to content

Commit 4bfaa0b

Browse files
committed
[test] no parallel tests
Test to see if flakeyness goes away
1 parent 61fa273 commit 4bfaa0b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ jobs:
206206
fi
207207
208208
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
210211
RC=${PIPESTATUS[0]}
211212
set -e
212213

0 commit comments

Comments
 (0)