Skip to content

Commit

Permalink
cut verbosity of logging
Browse files Browse the repository at this point in the history
  • Loading branch information
tychoish committed Jan 11, 2024
1 parent db1a8cd commit 17c5d85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
PROTOC=`just protoc && just --evaluate PROTOC` ./scripts/protocol-test.sh
- name: pg protocol tests (slt runner)
run: just slt-bin -v 'pgproto/*'
run: just slt-bin 'pgproto/*'

sql-logic-tests:
name: SQL Logic Tests
Expand All @@ -227,15 +227,15 @@ jobs:
if [[ "${{ matrix.protocol }}" == "rpc" ]]; then
just rpc-tests
else
just slt-bin -v --protocol=${{ matrix.protocol }} 'sqllogictests/*'
just slt-bin --protocol=${{ matrix.protocol }} 'sqllogictests/*'
fi
- name: public sql logic tests
if: ${{ env.ACTIONS_STEP_DEBUG != 'true' }}
run: |
if [[ "${{ matrix.protocol }}" == "rpc" ]]; then
just rpc-tests
else
just slt-bin -v --protocol=${{ matrix.protocol }} 'sqllogictests/*'
just slt-bin --protocol=${{ matrix.protocol }} 'sqllogictests/*'
fi
process-integration-tests:
Expand Down

0 comments on commit 17c5d85

Please sign in to comment.