Skip to content

Commit

Permalink
refactor: moving tools tests to test_tools
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Jan 16, 2025
1 parent 205f80e commit 2b5c8c9
Show file tree
Hide file tree
Showing 5 changed files with 704 additions and 710 deletions.
5 changes: 2 additions & 3 deletions src/ansys/mapdl/core/mapdl_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,9 +420,8 @@ def __init__(
self.remove_temp_dir_on_exit: bool = remove_temp_dir_on_exit
self._jobname: str = start_parm.get("jobname", "file")
self._path: Optional[str] = start_parm.get("run_location", None)
self._start_instance: Optional[str] = (
start_parm.get("start_instance") or get_start_instance()
)
self._start_instance: Optional[str] = start_parm.get("start_instance")

self._busy: bool = False # used to check if running a command on the server
self._local: bool = start_parm.get("local", True)
self._launched: bool = start_parm.get("launched", True)
Expand Down
Loading

0 comments on commit 2b5c8c9

Please sign in to comment.