Beispiel #1
0
 def get_conclusion(self):
     """
     :return: the conclusion from the file in ``self.conclusion``
     :rtype: str
     """
     if self.conclusion:
         return get_blob(self.top_container().repository.commit(self.top_container().current_version).tree,
                         self.conclusion)
Beispiel #2
0
 def get_conclusion(self):
     """
     :return: the conclusion from the file in ``self.conclusion``
     :rtype: str
     """
     if self.conclusion:
         return get_blob(self.top_container().repository.commit(self.top_container().current_version).tree,
                         self.conclusion)
Beispiel #3
0
 def get_text(self):
     """
     :return: versioned text
     :rtype: str
     """
     if self.text:
         return get_blob(
             self.container.top_container().repository.commit(self.container.top_container().current_version).tree,
             self.text)
Beispiel #4
0
 def get_text(self):
     """
     :return: versioned text
     :rtype: str
     """
     if self.text:
         return get_blob(
             self.container.top_container().repository.commit(self.container.top_container().current_version).tree,
             self.text)