# HG changeset patch # User Jeff Hammel # Date 1296624870 28800 # Node ID e15ccc0e1463bf12063af01cb527586ba79212b4 # Parent bba97450cbc2d21b3a598516e33d993e08092347 its better to add things to the correct ctor diff -r bba97450cbc2 -r e15ccc0e1463 autobot/projects/mozmill/__init__.py --- a/autobot/projects/mozmill/__init__.py Tue Feb 01 21:17:00 2011 -0800 +++ b/autobot/projects/mozmill/__init__.py Tue Feb 01 21:34:30 2011 -0800 @@ -11,11 +11,12 @@ # VCS sources = {'git': ['http://github.com/mozautomation/mozmill.git']} - def __init__(self, firefox_url=None, git=None): + def __init__(self, firefox_url=None, git=None, + tests='http://hg.mozilla.org/qa/mozmill-tests'): # setup the environment - VirtualenvFactory.__init__(self, name='mozmill', git=git, - tests='http://hg.mozilla.org/qa/mozmill-tests') + VirtualenvFactory.__init__(self, name='mozmill', git=git) + # currently, mozmill-tests are dealt with separately here # this is to avoid having mozmill depend on them or their changes # ideally, these would be even more specifiable