We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc82344 commit b50d484Copy full SHA for b50d484
src/cloudai/workloads/ai_dynamo/report_generation_strategy.py
@@ -46,6 +46,7 @@ def can_handle_directory(self) -> bool:
46
output_path = self.test_run.output_path
47
csv_files = list(output_path.rglob(CSV_FILES_PATTERN))
48
json_files = list(output_path.rglob(JSON_FILES_PATTERN))
49
+ logging.debug(f"Found CSV files: {csv_files}, JSON files: {json_files}")
50
return len(csv_files) > 0 and len(json_files) > 0
51
52
def _find_csv_file(self) -> Path | None:
0 commit comments