*: Fix test -v flag in CI

This commit is contained in:
diamondburned 2023-11-04 03:12:39 -07:00
parent 619521c41e
commit 040622f494
No known key found for this signature in database
GPG Key ID: D78C4471CE776659
1 changed files with 2 additions and 2 deletions

View File

@ -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
@ -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 }}