From cadb72522e61ce7b0cb18513a2f3b6cf40fded85 Mon Sep 17 00:00:00 2001 From: Rail Aliev Date: Wed, 12 Oct 2011 06:45:28 -0400 Subject: [PATCH] Bug 693903 - Run unittests for mozilla-tests as well. --- master/preproduction_factory.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/master/preproduction_factory.py b/master/preproduction_factory.py index 4f5d9dc..5c23446 100644 --- a/master/preproduction_factory.py +++ b/master/preproduction_factory.py @@ -184,7 +184,13 @@ def config_tests(self): workdir='buildbot-configs/mozilla', command=['bash', '-c', 'exit=0; for f in test/*.py; do trial $f || exit=1; done; exit $exit'], - name='config_tests', + name='mozilla_config_tests', + )) + self.addStep(ShellCommand( + workdir='buildbot-configs/mozilla-tests', + command=['bash', '-c', + 'exit=0; for f in test/*.py; do trial $f || exit=1; done; exit $exit'], + name='mozilla-tests_config_tests', )) def run_on_master(self, master_dir, cmd):