コード例 #1
0
ファイル: xunitparser.py プロジェクト: ekhomyakova/trep
 def parse(self, source):
     try:
         xml = ElementTree.parse(source)
     except ElementTree.ParseError, e:
         get_logger().error(
             "Can not parse xunit file, error: {0}".format(e))
         return []
コード例 #2
0
ファイル: source.py プロジェクト: ehles/trep
    def __init__(self):
        self.source_name = get_conf()['test_results']['source']
        self.conf = {}
        try:
            self.source_mod = import_module(
                "trep.incoming.%s" % self.source_name)
        except ImportError:
            get_logger().error('Invalid source value: "%s"' % self.source_name)
            raise

        self.conf = get_conf()['test_results'].get(self.source_name, {})
コード例 #3
0
    def __init__(self):
        self.source_name = get_conf()['test_results']['source']
        self.conf = {}
        try:
            self.source_mod = import_module("trep.incoming.%s" %
                                            self.source_name)
        except ImportError:
            get_logger().error('Invalid source value: "%s"' % self.source_name)
            raise

        self.conf = get_conf()['test_results'].get(self.source_name, {})
コード例 #4
0
ファイル: xunitparser.py プロジェクト: ehles/trep
 def parse(self, source):
     try:
         xml = ElementTree.parse(source)
     except ElementTree.ParseError, e:
         get_logger().error("Can not parse xunit file, error: {0}".format(e))
         return []