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') {
|
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}
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -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}" \
|
||||||
|
|
|
@ -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} \
|
||||||
|
|
Loading…
Reference in New Issue