(files)
| 186 | |
| 187 | |
| 188 | def load_old_files(files): |
| 189 | with warnings.catch_warnings(): |
| 190 | warnings.simplefilter("ignore", category=UserWarning) |
| 191 | return dgl.load_graphs(os.path.join(os.path.dirname(__file__), files)) |
| 192 | |
| 193 | |
| 194 | def test_load_old_files1(): |
no test coverage detected