File tree 4 files changed +6
-11
lines changed
4 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 71
71
72
72
- run : bundle install --jobs 4 --retry 3 --without "nmatrix python"
73
73
74
- - run : bundle exec rake
75
- env :
76
- TIMEOUT_SEC : 180
74
+ - run : bundle exec rake VERBOSE=1 TIMEOUT_SEC=180
77
75
78
76
- run : rake build
79
77
Original file line number Diff line number Diff line change 64
64
65
65
- run : bundle install --jobs 4 --retry 3 --without "numo python"
66
66
67
- - run : bundle exec rake
68
- env :
69
- TIMEOUT_SEC : 180
67
+ - run : bundle exec rake VERBOSE=1 TIMEOUT_SEC=180
70
68
71
69
- run : rake build
72
70
Original file line number Diff line number Diff line change 83
83
84
84
- run : python -V
85
85
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
90
87
continue-on-error : ${{ matrix.python == '2.x' }}
Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ require "rake/testtask"
3
3
4
4
desc "Run tests"
5
5
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 )
7
9
end
8
10
9
11
task default : :test
You can’t perform that action at this time.
0 commit comments