Exemplo n.º 1
0
    def _test_file(self, test):
        addr = test.address()
        err = RuntimeError("test.address does not contain a valid file: %s" %
                           (addr, ))
        if not addr: raise err

        file_path = addr[0]
        if not os.path.exists(file_path): raise err
        return file_util.relative(file_util.source(file_path))
Exemplo n.º 2
0
    def _test_file(self, test):
        addr = test.address()
        err = RuntimeError("test.address does not contain a valid file: %s" % (addr,))
        if not addr:
            raise err

        file_path = addr[0]
        if not os.path.exists(file_path):
            raise err
        return file_util.relative(file_util.source(file_path))
Exemplo n.º 3
0
 def _test_file(self, test):
     file_path = test.address()[0]
     if not os.path.exists(file_path):
         raise RuntimeError("test.address does not contain a valid file: %s" % (test.address(),))
     return file_util.relative(file_util.source(file_path))