From 481e481881d402a243f04ee2f84df5e62868c6fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Diemer?= <stephane.diemer@ubicast.eu> Date: Mon, 15 Jan 2018 17:48:22 +0100 Subject: [PATCH] Pull submodules for ms-testing-suite (refs #24069). --- tester.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tester.py b/tester.py index 5d9cb94b..095d6839 100755 --- a/tester.py +++ b/tester.py @@ -233,7 +233,10 @@ class Tester(): if os.path.exists(ms_path): log('Updating ms-testing-suite in "%s".' % ms_path) os.chdir(ms_path) - subprocess.check_call(['git', 'pull']) + # TODO: + # subprocess.check_call(['git', 'checkout', 'stable']) + subprocess.check_call(['git', 'pull', '--recurse-submodules']) + subprocess.check_call(['git', 'submodule', 'update', '--recursive']) os.chdir(self.root_dir) else: log('Cloning ms-testing-suite in "%s".' % ms_path) -- GitLab