File tree Expand file tree Collapse file tree 4 files changed +6
-11
lines changed Expand file tree Collapse file tree 4 files changed +6
-11
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
75- env :
76- TIMEOUT_SEC : 180
74+ - run : bundle exec rake VERBOSE=1 TIMEOUT_SEC=180
7775
7876 - run : rake build
7977
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
68- env :
69- TIMEOUT_SEC : 180
67+ - run : bundle exec rake VERBOSE=1 TIMEOUT_SEC=180
7068
7169 - run : rake build
7270
Original file line number Diff line number Diff line change 8383
8484 - run : python -V
8585
86- - run : bundle exec rake
87- env :
88- PYTHON : python
89- TIMEOUT_SEC : 180
86+ - run : bundle exec rake PYTHON=python VERBOSE=1 TIMEOUT_SEC=180
9087 continue-on-error : ${{ matrix.python == '2.x' }}
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