# HG changeset patch # User Jeff Hammel # Date 1343771104 25200 # Node ID 268349e6c94130ba4f3de6de803e7ec079d9b644 # Parent a79c12daf9d746be17b46912d85caa319fa30ce2 remove devicemanager project; this now lives in mozbase diff -r a79c12daf9d7 -r 268349e6c941 README.txt --- a/README.txt Tue Jul 31 14:35:32 2012 -0700 +++ b/README.txt Tue Jul 31 14:45:04 2012 -0700 @@ -172,10 +172,9 @@ * logparser [WORKING] * profilemanager [IN FLIGHT] * mozmill [IN FLIGHT] -* devicemanager [IN FLIGHT] +* talos [IN FLIGHT] * firebug [TODO] * jetpack [TODO] -* talos [TODO] The projects are obtained from any factories in subdirectories of ``autobot.projects`` (use diff -r a79c12daf9d7 -r 268349e6c941 autobot/projects/devicemanager/__init__.py --- a/autobot/projects/devicemanager/__init__.py Tue Jul 31 14:35:32 2012 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -from buildbot.process.factory import BuildFactory -from buildbot.steps.shell import ShellCommand -from buildbot.steps.shell import WithProperties - -class TestDevicemanager(BuildFactory): - """ - devicemanager for mobile testing: - http://hg.mozilla.org/automation/remote-testing/ - """ - - def __init__(self): - BuildFactory.__init__(self) - - # checkout the repository - #self.addStep(ShellCommand(command=['hg', 'clone', 'http://hg.mozilla.org/automation/remote-testing/'])) - - # run the tests [TODO] -