Skip to content

Commit

Permalink
-race added to not covered tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ivvist committed Dec 25, 2024
1 parent 1fad04b commit a4f8148
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Binary file added ci-action
Binary file not shown.
2 changes: 2 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17442,6 +17442,8 @@ async function run() {
await execute(`bash -c "bash <(curl -Os https://uploader.codecov.io/latest/linux/codecov) -t ${codecovToken}"`)
} else {
let tststr='go test ./...'
if (codecovGoRace)
tststr=tststr + ' -race'
if (shorttest === "true"){
tststr=tststr + ' -short'
}
Expand Down
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ async function run() {
await execute(`bash -c "bash <(curl -Os https://uploader.codecov.io/latest/linux/codecov) -t ${codecovToken}"`)
} else {
let tststr='go test ./...'
if (codecovGoRace)
tststr=tststr + ' -race'
if (shorttest === "true"){
tststr=tststr + ' -short'
}
Expand Down

0 comments on commit a4f8148

Please sign in to comment.