TT#70901 selenium: update on "only use one thread for local testruns"

yeah... the threads were changed on jenkins side, not on locals one.
fixing that now

Change-Id: Ibf9b454ee58437c3eda2e8fb0bcc887ffea3ff32
mr10.0
Nico Schedel 4 years ago
parent 0f37e24b7c
commit fbf0f6d1d5

@ -57,14 +57,14 @@ cd t/selenium
if [ "${OUTPUT_TYPE:-}" = "junit" ] ; then if [ "${OUTPUT_TYPE:-}" = "junit" ] ; then
#Change thread count here and in nose2cfg/jenkinstest.cfg #Change thread count here and in nose2cfg/jenkinstest.cfg
export THREADS=1 export THREADS=2
export JENKINS=1 export JENKINS=1
python3 testrun.py -v -c nose2cfg/jenkinstest.cfg | \ python3 testrun.py -v -c nose2cfg/jenkinstest.cfg | \
tee -a "${OUTPUT_DIRECTORY}/selenium.xml" tee -a "${OUTPUT_DIRECTORY}/selenium.xml"
RC="${PIPESTATUS[0]}" RC="${PIPESTATUS[0]}"
else else
#Change thread count here and in nose2cfg/localtest.cfg #Change thread count here and in nose2cfg/localtest.cfg
export THREADS=2 export THREADS=1
python3 testrun.py -v -c nose2cfg/localtest.cfg|| RC=$? python3 testrun.py -v -c nose2cfg/localtest.cfg|| RC=$?
fi fi

Loading…
Cancel
Save