File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -83,11 +83,19 @@ jobs:
8383 with :
8484 distribution : ' temurin'
8585 java-version : 11
86- - name : Run tests
86+ - name : Run tests on Windows
87+ if : matrix.os == 'windows'
88+ uses :
nick-invision/[email protected] 89+ with :
90+ timeout_minutes : 20
91+ max_attempts : 2
92+ command : cd examples/ruby && bundle exec rspec
93+ new_command_on_retry : DEBUG=true cd examples/ruby && bundle exec rspec --only-failures
94+ - name : Run tests on Linux/Mac
95+ if : matrix.os != 'windows'
8796 uses :
nick-invision/[email protected] 8897 with :
8998 timeout_minutes : 20
90- max_attempts : 3
91- command : |
92- cd examples/ruby
93- bundle exec rspec
99+ max_attempts : 2
100+ command : cd examples/ruby && bundle exec rspec
101+ new_command_on_retry : $env:DEBUG="true" cd examples/ruby && bundle exec rspec --only-failures
Original file line number Diff line number Diff line change 99
1010 # Disable RSpec exposing methods globally on `Module` and `main`
1111 config . disable_monkey_patching!
12+ Dir . mktmpdir ( 'tmp' )
13+ config . example_status_persistence_file_path = "tmp/examples.txt"
1214
1315 config . expect_with :rspec do |c |
1416 c . syntax = :expect
You can’t perform that action at this time.
0 commit comments