()
| 28 | |
| 29 | |
| 30 | def _get_exported_data(): |
| 31 | exported_file = os.path.join( |
| 32 | ray._private.worker._global_node.get_session_dir_path(), |
| 33 | "logs", |
| 34 | "export_events", |
| 35 | "event_EXPORT_DATASET_OPERATOR_EVENT.log", |
| 36 | ) |
| 37 | assert os.path.isfile(exported_file) |
| 38 | |
| 39 | with open(exported_file, "r") as f: |
| 40 | data = f.readlines() |
| 41 | |
| 42 | return [json.loads(line) for line in data] |
| 43 | |
| 44 | |
| 45 | def test_report_issues(): |
no test coverage detected
searching dependent graphs…