Exemple #1
0
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
Exemple #2
0
 def configure(self):
     rbase = RallyAPIBase(self.config)
     self.rally = RallyConnector(self.config, rbase)
Exemple #3
0
 def configure(self):
     alm_api = RallyAPIBase(self.config)
     self.rally = RallyConnector(self.config, alm_api)