Ostensibly fix all flaky tests

This commit is contained in:
Radon Rosborough 2020-07-31 18:32:18 -06:00
parent b7c65bcd6c
commit 4e2d98b7f3
2 changed files with 2 additions and 2 deletions

View File

@ -1650,7 +1650,7 @@ main :: Effect Unit
main = do
log "Hello, world!"
`,
timeout: 45,
timeout: 60,
},
python: {
aliases: ["python3", "python2", "py"],

View File

@ -11,7 +11,7 @@ import * as api from "./api";
import { LangConfig, langs } from "./langs";
const TIMEOUT_SECS = 5;
const CONCURRENCY = 16;
const CONCURRENCY = 2;
function findPosition(str: string, idx: number) {
const lines = str.substring(0, idx).split("\n");