Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 3
0
 def setUp(self):
     c = ExcelCompiler("./tests/files/NamedRanges.xlsx",
                       ignore_sheets=['IHS'])
     self.graph = c.gen_graph()
     sys.setrecursionlimit(10000)
Exemplo n.º 4
0
 def setUp(self):
     c = ExcelCompiler("./tests/files/EmptyCellInRange.xlsx")
     self.graph = c.gen_graph()
     sys.setrecursionlimit(10000)
Exemplo n.º 5
0
 def setUp(self):
     c = ExcelCompiler("./tests/files/EmptyCellInRange.xlsx")
     self.graph = c.gen_graph()
     sys.setrecursionlimit(10000)
Exemplo n.º 6
0
 def setUp(self):
     c = ExcelCompiler("./tests/files/NamedRanges.xlsx", ignore_sheets = ['IHS'])
     self.graph = c.gen_graph()
     sys.setrecursionlimit(10000)
Exemplo n.º 7
0
 def setUp(self):
     c = ExcelCompiler("../files/source.xlsx")
     self.graph = c.gen_graph()
     sys.setrecursionlimit(10000)