Skip to content

Commit ca55228

Browse files
fix(dev): lower lua workers further
1 parent d407b2e commit ca55228

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/dev.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RESET='\033[0m'
1414
MAX_XDIST="${MAX_XDIST:-6}"
1515
CLI_XDIST_WORKERS="${CLI_XDIST_WORKERS:-2}"
1616
XDIST_WORKERS=$(python -c "import multiprocessing as mp; print(min(mp.cpu_count(), $MAX_XDIST))")
17-
LUA_XDIST_WORKERS=$(python -c "print(max($XDIST_WORKERS - $CLI_XDIST_WORKERS, 1))")
17+
LUA_XDIST_WORKERS="${LUA_XDIST_WORKERS:-2}"
1818

1919
print_msg() { printf "%b\n" "$1"; }
2020

0 commit comments

Comments
 (0)