diff options
author | Chocobozzz <me@florianbigard.com> | 2020-07-30 15:34:00 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-07-31 11:32:04 +0200 |
commit | f4659d73fb2d81c9a8f8d1f592ca873b622a194b (patch) | |
tree | 0aabe83d9c250c2e2951c50857d79faf2b582b4a /shared/extra-utils | |
parent | f0af38e69677d1afe17e48b3f5267128db3db1a4 (diff) | |
download | PeerTube-f4659d73fb2d81c9a8f8d1f592ca873b622a194b.tar.gz PeerTube-f4659d73fb2d81c9a8f8d1f592ca873b622a194b.tar.zst PeerTube-f4659d73fb2d81c9a8f8d1f592ca873b622a194b.zip |
Don't run in parallel cli and plugin tests
Diffstat (limited to 'shared/extra-utils')
-rw-r--r-- | shared/extra-utils/cli/cli.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/extra-utils/cli/cli.ts b/shared/extra-utils/cli/cli.ts index 54d05e9c6..c62e170bb 100644 --- a/shared/extra-utils/cli/cli.ts +++ b/shared/extra-utils/cli/cli.ts | |||
@@ -3,7 +3,7 @@ import { exec } from 'child_process' | |||
3 | import { ServerInfo } from '../server/servers' | 3 | import { ServerInfo } from '../server/servers' |
4 | 4 | ||
5 | function getEnvCli (server?: ServerInfo) { | 5 | function getEnvCli (server?: ServerInfo) { |
6 | return `NODE_ENV=test NODE_APP_INSTANCE=${server.serverNumber}` | 6 | return `NODE_ENV=test NODE_APP_INSTANCE=${server.internalServerNumber}` |
7 | } | 7 | } |
8 | 8 | ||
9 | async function execCLI (command: string) { | 9 | async function execCLI (command: string) { |