-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Conversation
The circle ci output is really long now and hard to skim, especially because of the failure tests. I would rather see each line of output replaces with a |
79b64b2
to
dbe0257
Compare
I changed it to dots and also saved the test output as a build artifact. I'm hoping this will help debug the intermittent timeouts we're seeing for the beta branch, which I'm thinking are due to a problem with Blocking Proxy and alert handling. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe put something at the top of test_log.txt
like "For a more readable version, use cat test_log.txt | less -R
". I'm satisfied with this as is though.
01a8545
to
007f845
Compare
007f845
to
daa0577
Compare
CLAs look good, thanks! |
1 similar comment
CLAs look good, thanks! |
CircleCI will timeout the test if it doesn't see any output for 10 minutes. This prints out a '.' with every bit of stdio input to show that we're making progress.
Helps with debugging on CircleCI. If the test times out or is killed, we'll be able to see what it was doing. Also removes the unused alwaysEnableStdio() method.
daa0577
to
8beb9ec
Compare
Test failure is the javascript dialog problem from chromedriver - going to go ahead and merge. |
CircleCI will timeout the test if it doesn't see any output for 10 minutes. This prints out a '.' with every bit of stdio input to show that we're making progress.
CircleCI will timeout the test if it doesn't see any output for 10
minutes. When running in CI, we need to inherit stdio so we don't get
killed if the tests run slowly due to timeouts. This will also give us
more info for debugging.