comparison talosnames/main.py @ 15:2fc6c53931a1

docstring"
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 10 Jul 2012 18:10:39 -0700
parents 323a01abd180
children 1713b3e244a7
comparison
equal deleted inserted replaced
14:1b18b2746e69 15:2fc6c53931a1
38 command = self.api.buildbot_command(suite) 38 command = self.api.buildbot_command(suite)
39 assert command is not None, "Suite not found; should be one of %s" % ', '.join(self.suites()) 39 assert command is not None, "Suite not found; should be one of %s" % ', '.join(self.suites())
40 return subprocess.list2cmdline(command) 40 return subprocess.list2cmdline(command)
41 41
42 def tests(self): 42 def tests(self):
43 pass 43 """return the talos test config for a buildbot suite name"""
44 44
45 def main(args=sys.argv[1:]): 45 def main(args=sys.argv[1:]):
46 parser = CommandParser(TalosNamesCLI) 46 parser = CommandParser(TalosNamesCLI)
47 parser.invoke(sys.argv[1:]) 47 parser.invoke(sys.argv[1:])
48 48