File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ def create_pattern(file_pattern: str) -> str:
124124 --------
125125 String value representing directory path
126126 """
127-
127+
128128 return os .path .join (self .dataset_path , dir , file_pattern )
129129
130130 # answer_filepath = (glob.glob(pattern("answer_*"), recursive=True))[0]
Original file line number Diff line number Diff line change @@ -384,7 +384,9 @@ def _run_subprocess(
384384 # killed after timeout
385385 return (False , None )
386386 except Exception as err :
387- self .log .warning (f"error while runing { '' .join (commands )} " )
387+ self .log .warning (
388+ f"While running { ' ' .join (commands )} \n Error ocurred: { err } "
389+ )
388390 # some other failure
389391 return (False , None )
390392
Original file line number Diff line number Diff line change 55
66import pytest
77
8+
89def pytest_addoption (parser ):
910 parser .addoption ("--bucket" , action = "store" , default = "verilog-llm-evals" )
1011
You can’t perform that action at this time.
0 commit comments