We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See https://travis-ci.com/github/zendesk/zendesk/jobs/352443847 for the problem I'm seeing. Look for models/category_test.rb... the stderr output is in the test/models/account/cleanup_test.rb section (by happenstance).
models/category_test.rb
test/models/account/cleanup_test.rb
I'd like to add $stderr.reopen(wpipe) to the line below to capture and report both IO streams so they both get dumped to the file being run w/ proper locking. https://github.com/grosser/forking_test_runner/blob/master/lib/forking_test_runner.rb#L255
$stderr.reopen(wpipe)
The only other thing I can think of is switching to a popen3("-") + select-loop type of situation and nobody wants to deal with that...
popen3("-")
select
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See https://travis-ci.com/github/zendesk/zendesk/jobs/352443847 for the problem I'm seeing. Look for
models/category_test.rb
... the stderr output is in thetest/models/account/cleanup_test.rb
section (by happenstance).I'd like to add
$stderr.reopen(wpipe)
to the line below to capture and report both IO streams so they both get dumped to the file being run w/ proper locking. https://github.com/grosser/forking_test_runner/blob/master/lib/forking_test_runner.rb#L255The only other thing I can think of is switching to a
popen3("-")
+select
-loop type of situation and nobody wants to deal with that...The text was updated successfully, but these errors were encountered: