File tree Expand file tree Collapse file tree
src/executorlib/task_scheduler/interactive Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11repos :
22 - repo : https://github.com/astral-sh/ruff-pre-commit
3- rev : v0.15.17
3+ rev : v0.15.20
44 hooks :
55 - id : ruff
66 name : ruff lint
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ def _start_process_helper(
189189 if self ._cwd is not None :
190190 working_directory = os .path .join (self ._cwd , hash )
191191 else :
192- working_directory = os .path .abspath (hash )
192+ working_directory = os .path .join ( os . path . abspath ("executorlib_cache" ), hash )
193193 set_current_directory_in_environment ()
194194 return queue_adapter .submit_job (
195195 command = " " .join (self .generate_command (command_lst = command_lst )),
@@ -242,8 +242,6 @@ def create_pysqa_block_allocation_scheduler(
242242 executor_kwargs ["cwd" ] = os .path .abspath (cache_directory )
243243 if cache_directory is not None :
244244 executor_kwargs ["cache_directory" ] = os .path .abspath (cache_directory )
245- else :
246- executor_kwargs ["cache_directory" ] = os .path .abspath ("." )
247245 executor_kwargs ["hostname_localhost" ] = hostname_localhost
248246 executor_kwargs ["log_obj_size" ] = log_obj_size
249247 executor_kwargs ["pmi_mode" ] = pmi_mode
You can’t perform that action at this time.
0 commit comments