Skip to content

Commit 97f1ab2

Browse files
committed
adds VERBOSE_MINITEST to make mini test output verbose
1 parent b20b08a commit 97f1ab2

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
branches:
77
- main
88

9+
env:
10+
VERBOSE_MINITEST: "true"
11+
912
jobs:
1013
test-truffleruby:
1114
strategy:

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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"]
1112
end
1213

1314
task :default => [:compile, :test]

0 commit comments

Comments
 (0)