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.
2 parents 0940e0e + 2c95397 commit a674903Copy full SHA for a674903
src/runner/test.rs
@@ -105,6 +105,12 @@ fn run_cargo<DB: WriteResults>(
105
if line.contains("urlopen error") && line.contains("Temporary failure in name resolution") {
106
did_network = true;
107
}
108
+ if line.contains("Address already in use") {
109
+ did_network = true;
110
+ }
111
+ if line.contains("code: 111") && line.contains("Connection refused") {
112
113
114
115
// Avoid trying to deserialize non JSON output
116
if !line.starts_with('{') {
0 commit comments