diff --git a/ci/tests/Jenkinsfile.e2e-nightly b/ci/tests/Jenkinsfile.e2e-nightly index 96dd3183c6..172cbf18b1 100644 --- a/ci/tests/Jenkinsfile.e2e-nightly +++ b/ci/tests/Jenkinsfile.e2e-nightly @@ -47,10 +47,12 @@ pipeline { ]) { dir('test/appium/tests') { sh """ - python3 -m pytest -m testrail_id \ - -m "not upgrade" \ - -n24 --rerun_count=2 \ + python3 -m pytest \ + --numprocesses 16 \ + --rerun_count=2 \ --testrail_report=True \ + -m testrail_id \ + -m "not upgrade" \ --network=${params.NETWORK} \ --apk=${params.APK_NAME} """ diff --git a/ci/tests/Jenkinsfile.e2e-prs b/ci/tests/Jenkinsfile.e2e-prs index bf7741493f..7b095a8933 100644 --- a/ci/tests/Jenkinsfile.e2e-prs +++ b/ci/tests/Jenkinsfile.e2e-prs @@ -83,7 +83,8 @@ pipeline { ]) { dir('test/appium/tests') { sh """ - python3 -m pytest -n24 \ + python3 -m pytest \ + --numprocesses 16 \ --rerun_count=2 \ --testrail_report=True \ -m "${params.TEST_MARKERS}" \ diff --git a/ci/tests/Jenkinsfile.e2e-upgrade b/ci/tests/Jenkinsfile.e2e-upgrade index 27ccfc04c8..b1f2a56235 100644 --- a/ci/tests/Jenkinsfile.e2e-upgrade +++ b/ci/tests/Jenkinsfile.e2e-upgrade @@ -51,8 +51,10 @@ pipeline { ]) { dir('test/appium/tests') { sh """ - python3 -m pytest -m upgrade \ - -n24 --rerun_count=2 \ + python3 -m pytest \ + -m upgrade \ + --numprocesses 16 \ + --rerun_count=2 \ --testrail_report=True \ --network=${params.NETWORK} \ --apk=${params.APK_NAME} \