Navigation Menu

Skip to content
This repository has been archived by the owner on Mar 29, 2019. It is now read-only.

Commit

Permalink
Bug 693903 - Run unittests for mozilla-tests as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rail Aliev committed Oct 12, 2011
1 parent c89cc3b commit cadb725
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion master/preproduction_factory.py
Expand Up @@ -184,7 +184,13 @@ def config_tests(self):
workdir='buildbot-configs/mozilla', workdir='buildbot-configs/mozilla',
command=['bash', '-c', command=['bash', '-c',
'exit=0; for f in test/*.py; do trial $f || exit=1; done; exit $exit'], '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): def run_on_master(self, master_dir, cmd):
Expand Down

0 comments on commit cadb725

Please sign in to comment.