Update number of parallel sessions to align with Sauce
Signed-off-by: Serhy <sergii@status.im>
This commit is contained in:
parent
4384d979e7
commit
473c5135b2
|
@ -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}
|
||||
"""
|
||||
|
|
|
@ -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}" \
|
||||
|
|
|
@ -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} \
|
||||
|
|
Loading…
Reference in New Issue