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

Merge pull request #9532 from metabase/fix_e2e_no_output_timeout

Disable "." log in CI since it break's CircleCI's no_output_timeout
parents a24756a5 5a40a17c
No related branches found
No related tags found
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.
Finish editing this message first!
Please register or to comment