Skip to content

Commit aaf7b1a

Browse files
Turn off race detection for upload test (#1082)
This patch can be reverted after the upstream testify library fixes the code which causes a race condition when mocking. I couldn't quite figure out how to run the single test without race detection while running others with race detection, so I've temporarily added two test commands in the go-ci.yml file.
1 parent b24f883 commit aaf7b1a

File tree

3 files changed

+460
-438
lines changed

3 files changed

+460
-438
lines changed

Diff for: .github/workflows/go-ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ jobs:
1717
uses: actions/setup-go@v5
1818
with:
1919
go-version: ${{ matrix.go-version }}
20-
- run: go test -race -v ./...
20+
- run: |
21+
go test -race -v ./...
22+
go test -v ./...

0 commit comments

Comments
 (0)