File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ require "rake/testtask"
33
44desc "Run tests"
55task :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 )
79end
810
911task default : :test
You can’t perform that action at this time.
0 commit comments