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