From 2c5ad201e7beb39824e5560c26579ba4135af0cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu> Date: Fri, 10 Mar 2017 10:59:42 +0100 Subject: [PATCH] Limit number of instances to test to 2 (refs #20760). --- tester.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tester.py b/tester.py index 8750a6be..0ae89ed4 100755 --- a/tester.py +++ b/tester.py @@ -49,6 +49,7 @@ class Tester(): VALID_ARGS = ['-e', '-f', '-b', '-d', '-h'] MAX_LOG_FILES = 50 NO_MAIL_FAILURES_COUNT = 30 + MAX_INSTANCES = 2 def __init__(self, *args): log('\033[96m-------------------------------\033[0m') @@ -147,6 +148,8 @@ class Tester(): ms_users.append(user) # Get MediaServer tests if ms_users: + if len(ms_users) > self.MAX_INSTANCES: + ms_users = ms_users[:self.MAX_INSTANCES] # Clone testing suite ms_path = os.path.join(path, 'ms-testing-suite') if os.path.exists(ms_path): -- GitLab