File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -119,12 +119,12 @@ jobs:
119119 ;;
120120 esac > container_image
121121 echo "image=$(cat container_image)" >> $GITHUB_OUTPUT
122- docker run --rm -d -v "${PWD}":"${PWD}" -w "${PWD}" $(cat container_image) /bin/sleep 64d | tee container_id
122+ docker run --rm -d -v "${PWD}":"${PWD}" -w "${PWD}" -e VERBOSE_MINITEST=true $(cat container_image) /bin/sleep 64d | tee container_id
123123 docker exec -w "${PWD}" $(cat container_id) uname -a
124124 echo "container_id=$(cat container_id)" >> $GITHUB_OUTPUT
125125 - name : Install Alpine system dependencies
126126 if : ${{ matrix.libc == 'musl' }}
127- run : docker exec -w "${PWD}" ${{ steps.container.outputs.container_id }} apk add --no-cache build-base bash git
127+ run : docker exec -w "${PWD}" ${{ steps.container.outputs.container_id }} apk add --no-cache build-base bash git tzdata
128128 - name : Checkout
129129 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
130130 with :
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Minitest::TestTask.create(:test) do |t|
88 t . libs << "test"
99 t . libs << "lib"
1010 t . test_globs = FileList [ 'test/**/*_test.rb' ]
11+ t . extra_args += [ "--verbose" ] if ENV [ "VERBOSE_MINITEST" ]
1112end
1213
1314task :default => [ :compile , :test ]
You can’t perform that action at this time.
0 commit comments