File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1515 - macos
1616
1717 ruby :
18- - " 2.6"
1918 - " 2.7"
2019 - " 3.0"
20+ - " 3.1"
21+ - " 3.2"
2122
2223 experimental : [false]
2324 env : [""]
3435 ruby : head
3536 experimental : true
3637 - os : ubuntu
37- ruby : 2.6
38- env : COVERAGE=PartialSummary,Coveralls
38+ ruby : " 3.2 "
39+ env : COVERAGE=PartialSummary
3940 experimental : true
4041
4142 steps :
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ def external
55
66 Bundler . with_clean_env do
77 clone_and_test ( "async-io" )
8- clone_and_test ( "async-pool" )
9- clone_and_test ( "async-websocket" )
8+ clone_and_test ( "async-pool" , "sus" )
9+ clone_and_test ( "async-websocket" , "sus" )
1010 clone_and_test ( "async-dns" )
1111 clone_and_test ( "async-http" )
1212 clone_and_test ( "falcon" )
@@ -16,7 +16,7 @@ def external
1616
1717private
1818
19- def clone_and_test ( name )
19+ def clone_and_test ( name , command = "rspec" )
2020 require 'fileutils'
2121
2222 path = "external/#{ name } "
@@ -35,5 +35,5 @@ def clone_and_test(name)
3535 file . puts ( 'gem "async", path: "../../"' )
3636 end
3737
38- system ( "cd #{ path } && bundle install && bundle exec rspec " ) or abort ( "Tests failed!" )
38+ system ( "cd #{ path } && bundle install && bundle exec #{ command } " ) or abort ( "Tests for #{ name } failed!" )
3939end
You can’t perform that action at this time.
0 commit comments