We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a9a7a0 commit 5b7b81aCopy full SHA for 5b7b81a
.gitignore
@@ -34,6 +34,8 @@ dist/
34
.idea/
35
.vscode/
36
.autogen_ssh_key
37
+client.crt
38
+client.key
39
40
# Cache
41
*.swp
hack/run-e2e.sh
@@ -26,5 +26,9 @@ frpsPath=${ROOT}/bin/frps
26
if [ "${FRPS_PATH}" ]; then
27
frpsPath="${FRPS_PATH}"
28
fi
29
+concurrency="12"
30
+if [ "${CONCURRENCY}" ]; then
31
+ concurrency="${CONCURRENCY}"
32
+fi
33
-ginkgo -nodes=8 --poll-progress-after=60s ${ROOT}/test/e2e -- -frpc-path=${frpcPath} -frps-path=${frpsPath} -log-level=${logLevel} -debug=${debug}
+ginkgo -nodes=${concurrency} --poll-progress-after=60s ${ROOT}/test/e2e -- -frpc-path=${frpcPath} -frps-path=${frpsPath} -log-level=${logLevel} -debug=${debug}
0 commit comments