We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04ede9e commit a2d7632Copy full SHA for a2d7632
.bazelrc
@@ -56,6 +56,10 @@ build --test_env=PYTHON_VERSION
56
57
build --test_env=RUBYOPT="-Irb/lib -w"
58
59
+# JRuby/TruffleRuby: https://github.com/jruby/jruby/issues/5661
60
+build --action_env=HOME
61
+test --test_env=HOME
62
+
63
test --test_timeout=1800
64
65
test:node_debug --test_output=streamed --test_strategy=exclusive --test_timeout=9999 --nocache_test_results
rb/lib/selenium/webdriver/common/child_process.rb
@@ -52,7 +52,7 @@ def io
52
end
53
54
def start
55
- options = {%i(out err) => io}
+ options = {%i[out err] => io}
options[:pgroup] = true unless Platform.windows? # NOTE: this is a bug only in Windows 7
WebDriver.logger.debug("Starting process: #{@command} with #{options}")
0 commit comments