Update number of parallel sessions to align with Sauce

Signed-off-by: Serhy <sergii@status.im>
This commit is contained in:
Serhy 2020-11-09 21:30:22 +02:00
parent 4384d979e7
commit 473c5135b2
No known key found for this signature in database
GPG Key ID: 5D7C4B9E2B6F500B
3 changed files with 11 additions and 6 deletions

View File

@ -47,10 +47,12 @@ pipeline {
]) { ]) {
dir('test/appium/tests') { dir('test/appium/tests') {
sh """ sh """
python3 -m pytest -m testrail_id \ python3 -m pytest \
-m "not upgrade" \ --numprocesses 16 \
-n24 --rerun_count=2 \ --rerun_count=2 \
--testrail_report=True \ --testrail_report=True \
-m testrail_id \
-m "not upgrade" \
--network=${params.NETWORK} \ --network=${params.NETWORK} \
--apk=${params.APK_NAME} --apk=${params.APK_NAME}
""" """

View File

@ -83,7 +83,8 @@ pipeline {
]) { ]) {
dir('test/appium/tests') { dir('test/appium/tests') {
sh """ sh """
python3 -m pytest -n24 \ python3 -m pytest \
--numprocesses 16 \
--rerun_count=2 \ --rerun_count=2 \
--testrail_report=True \ --testrail_report=True \
-m "${params.TEST_MARKERS}" \ -m "${params.TEST_MARKERS}" \

View File

@ -51,8 +51,10 @@ pipeline {
]) { ]) {
dir('test/appium/tests') { dir('test/appium/tests') {
sh """ sh """
python3 -m pytest -m upgrade \ python3 -m pytest \
-n24 --rerun_count=2 \ -m upgrade \
--numprocesses 16 \
--rerun_count=2 \
--testrail_report=True \ --testrail_report=True \
--network=${params.NETWORK} \ --network=${params.NETWORK} \
--apk=${params.APK_NAME} \ --apk=${params.APK_NAME} \