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:
119
119
;;
120
120
esac > container_image
121
121
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
123
123
docker exec -w "${PWD}" $(cat container_id) uname -a
124
124
echo "container_id=$(cat container_id)" >> $GITHUB_OUTPUT
125
125
- name : Install Alpine system dependencies
126
126
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
128
128
- name : Checkout
129
129
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
130
130
with :
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Minitest::TestTask.create(:test) do |t|
8
8
t . libs << "test"
9
9
t . libs << "lib"
10
10
t . test_globs = FileList [ 'test/**/*_test.rb' ]
11
+ t . extra_args += [ "--verbose" ] if ENV [ "VERBOSE_MINITEST" ]
11
12
end
12
13
13
14
task :default => [ :compile , :test ]
You can’t perform that action at this time.
0 commit comments