We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20b08a commit 97f1ab2Copy full SHA for 97f1ab2
.github/workflows/ci.yml
@@ -6,6 +6,9 @@ on:
6
branches:
7
- main
8
9
+env:
10
+ VERBOSE_MINITEST: "true"
11
+
12
jobs:
13
test-truffleruby:
14
strategy:
Rakefile
@@ -8,6 +8,7 @@ Minitest::TestTask.create(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.test_globs = FileList['test/**/*_test.rb']
+ t.extra_args += ["--verbose"] if ENV["VERBOSE_MINITEST"]
end
task :default => [:compile, :test]
0 commit comments