File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 97
97
cd examples/ruby
98
98
bundle exec rspec
99
99
new_command_on_retry : |
100
- $env:DEBUG="true"
101
- cd examples/ruby
102
- bundle exec rspec --only-failures
103
- - name : Run tests on Linux/Mac
100
+ cd examples/ruby; $env:DEBUG="true"; bundle exec rspec --only-failures
101
+ - name : Run tests on ${{ matrix.os }}
104
102
if : matrix.os != 'windows'
105
103
uses :
nick-invision/[email protected]
106
104
with :
@@ -110,6 +108,5 @@ jobs:
110
108
cd examples/ruby
111
109
bundle exec rspec
112
110
new_command_on_retry : |
113
- DEBUG="true"
114
111
cd examples/ruby
115
- bundle exec rspec --only-failures
112
+ DEBUG=true bundle exec rspec --only-failures
Original file line number Diff line number Diff line change 32
32
def start_session
33
33
options = Selenium ::WebDriver ::Chrome ::Options . new
34
34
options . add_argument ( 'disable-search-engine-choice-screen' )
35
+ options . add_argument ( '--no-sandbox' )
35
36
@driver = Selenium ::WebDriver . for ( :chrome , options : options )
36
37
end
37
38
You can’t perform that action at this time.
0 commit comments