aboutsummaryrefslogtreecommitdiff
path: root/Regression/prepare_file_ci.py
diff options
context:
space:
mode:
Diffstat (limited to 'Regression/prepare_file_ci.py')
-rw-r--r--Regression/prepare_file_ci.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Regression/prepare_file_ci.py b/Regression/prepare_file_ci.py
index 7ad00b0d8..bb94cb992 100644
--- a/Regression/prepare_file_ci.py
+++ b/Regression/prepare_file_ci.py
@@ -76,8 +76,7 @@ text = re.sub('runtime_params =',
# Use less/more cores for compiling, e.g. public CI only provides 2 cores
if ci_num_make_jobs is not None:
text = re.sub( 'numMakeJobs = \d+', 'numMakeJobs = {}'.format(ci_num_make_jobs), text )
-# Use only 1 OMP thread for running
-text = re.sub( 'numthreads = \d+', 'numthreads = 1', text)
+
# Prevent emails from being sent
text = re.sub( 'sendEmailWhenFail = 1', 'sendEmailWhenFail = 0', text )