We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61fa273 commit 4bfaa0bCopy full SHA for 4bfaa0b
.github/workflows/workspace-integration-tests.yml
@@ -206,7 +206,8 @@ jobs:
206
fi
207
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
+ # 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
211
RC=${PIPESTATUS[0]}
212
set -e
213
0 commit comments