Skip to content

Commit

Permalink
TMP: Make tests verbose for the hanging configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
choroba committed Jan 13, 2025
1 parent 19d14e8 commit 3b952fc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -558,14 +558,18 @@ jobs:
make
- name: Test
run: |
TEST_VERBOSE=0
if [ "${{ matrix.perl-version }}" = "system" ]; then
eval $(perl -I"$HOME/perl5/lib/perl5" -Mlocal::lib)
fi
if [ "${{ matrix.server-version }}" != "system-pic" ]; then
export HARNESS_OPTIONS=j4
fi
export RELEASE_TESTING=1
if [ "${{ matrix.server-version }}" = "system-pic" ] && [ "${{ matrix.client-version }}" = "system-pic" ]; then
export TEST_VERBOSE=1
fi
if [ "${{ matrix.server-version }}" != "none" ]; then
export CONNECTION_TESTING=1
fi
make test
make test TEST_VERBOSE=$TEST_VERBOSE

0 comments on commit 3b952fc

Please sign in to comment.