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

Set thread count to one by default for local tests for better
visibilty and reliability. Jenkins tests will continue to run with
2 threads

Change-Id: Ib7ea46674d74f318c3818e733964d6ca2abbabbc
mr10.0
Nico Schedel 4 years ago
parent 5de213503b
commit 77ffa11c63

@ -14,7 +14,7 @@ test_fullname = True
[multiprocess] #change thread count here. should be the same as in testrunner
always-on = True
processes = 2
processes = 1
[output-buffer]
always-on = True

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

Loading…
Cancel
Save