Skip to content

Commit

Permalink
*: Fix test -v flag in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
diamondburned committed Nov 4, 2023
1 parent 619521c commit 040622f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: go test $TEST_FLAGS ./...
env:
TEST_FLAGS: >-
-verbose=${{ runner.debug && '1' || '0' }}
-v=${{ runner.debug && '1' || '0' }}
integration-test:
name: Integration Test
Expand All @@ -86,7 +86,7 @@ jobs:
go tool cover -func /tmp/coverage.out
env:
TEST_FLAGS: >-
-verbose=${{ runner.debug && '1' || '0' }}
-v=${{ runner.debug && '1' || '0' }}
-short=${{ (github.event-name == 'workflow_dispatch' || github.event.inputs.short-integration-tests) && '1' || '0' }}
CHANNEL_ID: ${{ secrets.CHANNEL_ID }}
GUILD_ID: ${{ secrets.GUILD_ID }}
Expand Down

0 comments on commit 040622f

Please sign in to comment.