Skip to content
Snippets Groups Projects
Unverified Commit 5a40a17c authored by Tom Robinson's avatar Tom Robinson Committed by GitHub
Browse files

Disable "." log in CI since it break's CircleCI's no_output_timeout

parent bbb3e177
Branches
Tags
No related merge requests found
......@@ -76,7 +76,10 @@ export const BackendResource = createSharedResource("BackendResource", {
")",
);
while (!await isReady(server.host)) {
process.stdout.write(".");
if (!process.env["CI"]) {
// disable for CI since it break's CircleCI's no_output_timeout
process.stdout.write(".");
}
await delay(500);
}
process.stdout.write("\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment