コード例 #1
0
ファイル: __init__.py プロジェクト: christyson/sdetools
class Command(BaseCommand):
    help = 'Rally <-> SDE sync utility.'

    def configure(self):
        rbase = RallyAPIBase(self.config)
        self.rally = RallyConnector(self.config, rbase)

    def handle(self):
        self.rally.initialize()
        self.rally.synchronize()
        return True
コード例 #2
0
ファイル: __init__.py プロジェクト: christyson/sdetools
 def configure(self):
     rbase = RallyAPIBase(self.config)
     self.rally = RallyConnector(self.config, rbase)
コード例 #3
0
ファイル: __init__.py プロジェクト: sdelements/sdetools
 def configure(self):
     alm_api = RallyAPIBase(self.config)
     self.rally = RallyConnector(self.config, alm_api)