File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ jobs:
113113 ;;
114114 esac > container_image
115115 echo "image=$(cat container_image)" >> $GITHUB_OUTPUT
116- docker run --rm -d -v "${PWD}":"${PWD}" -w "${PWD}" $(cat container_image) /bin/sleep 64d | tee container_id
116+ docker run --rm -d -v "${PWD}":"${PWD}" -w "${PWD}" -e VERBOSE_MINITEST=true $(cat container_image) /bin/sleep 64d | tee container_id
117117 docker exec -w "${PWD}" $(cat container_id) uname -a
118118 echo "container_id=$(cat container_id)" >> $GITHUB_OUTPUT
119119 - name : Install Alpine system dependencies
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