Skip to content

Commit 060cb2e

Browse files
committed
CI: Specify verbose flag
1 parent eb68d14 commit 060cb2e

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171

7272
- run: bundle install --jobs 4 --retry 3 --without "nmatrix python"
7373

74-
- run: bundle exec rake
74+
- run: bundle exec rake VERBOSE=1
7575
env:
7676
TIMEOUT_SEC: 180
7777

.github/workflows/nmatrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
- run: bundle install --jobs 4 --retry 3 --without "numo python"
6666

67-
- run: bundle exec rake
67+
- run: bundle exec rake VERBOSE=1
6868
env:
6969
TIMEOUT_SEC: 180
7070

.github/workflows/pycall.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383

8484
- run: python -V
8585

86-
- run: bundle exec rake
86+
- run: bundle exec rake VERBOSE=1
8787
env:
8888
PYTHON: python
8989
TIMEOUT_SEC: 180

Rakefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ require "rake/testtask"
33

44
desc "Run tests"
55
task :test do
6-
ruby("test/run.rb")
6+
verbose = ""
7+
verbose = "-v" if ENV["VERBOSE"].to_i > 0
8+
ruby("test/run.rb #{verbose}".strip)
79
end
810

911
task default: :test

0 commit comments

Comments
 (0)