From 3fa097dfc6cc2e945fbcff060aa36e43d365efee Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 22 Aug 2020 18:41:02 -0600 Subject: [PATCH] Reduce concurrency for CI --- backend/src/test-runner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/test-runner.ts b/backend/src/test-runner.ts index 649cb49..36ab925 100644 --- a/backend/src/test-runner.ts +++ b/backend/src/test-runner.ts @@ -11,7 +11,7 @@ import * as api from "./api"; import { LangConfig, langs } from "./langs"; const TIMEOUT_SECS = 5; -const CONCURRENCY = 2; +const CONCURRENCY = 1; function findPosition(str: string, idx: number) { const lines = str.substring(0, idx).split("\n");