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
Some testing software like Selenium put the test output to STDERR not STDOUT which mean it doesn't get captured by the CI.
Is there some way we can capture that output to so we get the full test output?
The text was updated successfully, but these errors were encountered:
a way is to capture STDERR with 2> or redirect STDERR to STDOUT using 2>&1
2>
2>&1
Sorry, something went wrong.
No branches or pull requests
Some testing software like Selenium put the test output to STDERR not STDOUT which mean it doesn't get captured by the CI.
Is there some way we can capture that output to so we get the full test output?
The text was updated successfully, but these errors were encountered: