示例#1
0
    def setUp(self):
        file_name = "./tests/ast/pruning.xlsx"

        c = ExcelCompiler(file_name)
        sp = c.gen_graph(outputs=["Sheet1!C6"])
        sp = sp.prune_graph(["Sheet1!A1", "Sheet1!B1", "test"])
        self.sp = sp
示例#2
0
    def setUp(self):
        file_name = "./tests/ast/pruning.xlsx"

        c = ExcelCompiler(file_name)
        sp = c.gen_graph(outputs = ["Sheet1!C6"])
        sp = sp.prune_graph(["Sheet1!A1","Sheet1!B1", "test"])
        self.sp = sp
示例#3
0
文件: excel.py 项目: walexsmith/koala
 def setUp(self):
     c = ExcelCompiler("./tests/files/NamedRanges.xlsx",
                       ignore_sheets=['IHS'])
     self.graph = c.gen_graph()
     sys.setrecursionlimit(10000)
示例#4
0
 def setUp(self):
     c = ExcelCompiler("./tests/files/EmptyCellInRange.xlsx")
     self.graph = c.gen_graph()
     sys.setrecursionlimit(10000)
示例#5
0
 def setUp(self):
     c = ExcelCompiler("./tests/files/EmptyCellInRange.xlsx")
     self.graph = c.gen_graph()
     sys.setrecursionlimit(10000)
示例#6
0
 def setUp(self):
     c = ExcelCompiler("./tests/files/NamedRanges.xlsx", ignore_sheets = ['IHS'])
     self.graph = c.gen_graph()
     sys.setrecursionlimit(10000)
示例#7
0
 def setUp(self):
     c = ExcelCompiler("../files/source.xlsx")
     self.graph = c.gen_graph()
     sys.setrecursionlimit(10000)