File tree 1 file changed +3
-3
lines changed
python_tool_competition_2024_utbot_python
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def _build_test(
63
63
sys .stderr .write ("ERROR: This script works only on Linux\n " )
64
64
exit (1 )
65
65
66
- sys_paths = [target_file_info .config .targets_dir ]
66
+ sys_paths = [target_file_info .config .targets_dir . parent ]
67
67
68
68
with tempfile .TemporaryDirectory () as tempdir :
69
69
output_dir = pathlib .Path (tempdir )
@@ -79,7 +79,7 @@ def _build_test(
79
79
UTBotPythonConfig .PYTHON_PATH ,
80
80
UTBotPythonConfig .JAVA_PATH ,
81
81
check_usvm = check_usvm ,
82
- include_mypy_in_timeout = UTBotPythonConfig .INCLUDE_MYPY_RUN_IN_TIMEOUT
82
+ include_mypy_in_timeout = UTBotPythonConfig .INCLUDE_MYPY_RUN_IN_TIMEOUT ,
83
83
)
84
84
85
85
utbot_tests = _read_generated_tests (str (output_file ))
@@ -99,7 +99,7 @@ def _run_utbot(
99
99
python_path : str ,
100
100
java_cmd : str ,
101
101
check_usvm : bool = False ,
102
- include_mypy_in_timeout : bool = False
102
+ include_mypy_in_timeout : bool = False ,
103
103
):
104
104
command = (
105
105
f"{ java_cmd } -jar { jar_path } "
You can’t perform that action at this time.
0 commit comments