()
| 1638 | dgl.backend.backend_name == "tensorflow", reason="Skip Tensorflow" |
| 1639 | ) |
| 1640 | def test_csvdataset(): |
| 1641 | _test_NodeEdgeGraphData() |
| 1642 | _test_construct_graphs_node_ids() |
| 1643 | _test_construct_graphs_homo() |
| 1644 | _test_construct_graphs_hetero() |
| 1645 | _test_construct_graphs_multiple() |
| 1646 | _test_DefaultDataParser() |
| 1647 | _test_load_yaml_with_sanity_check() |
| 1648 | _test_load_node_data_from_csv() |
| 1649 | _test_load_edge_data_from_csv() |
| 1650 | _test_load_graph_data_from_csv() |
| 1651 | _test_CSVDataset_single() |
| 1652 | _test_CSVDataset_multiple() |
| 1653 | _test_CSVDataset_customized_data_parser() |
| 1654 | |
| 1655 | |
| 1656 | @unittest.skipIf( |
no test coverage detected