We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b78fe4 commit 818d7d6Copy full SHA for 818d7d6
tests/conftest.py
@@ -11,6 +11,7 @@
11
BashAction,
12
Command,
13
CreateBashSessionRequest,
14
+ CloseBashSessionRequest,
15
)
16
from swerex.runtime.remote import RemoteRuntime
17
from swerex.utils.free_port import find_free_port
@@ -68,7 +69,7 @@ async def runtime_with_default_session(remote_runtime: RemoteRuntime):
68
69
try:
70
yield remote_runtime
71
finally:
- await remote_runtime.close()
72
+ await remote_runtime.close_session(CloseBashSessionRequest())
73
74
75
class _Action(BashAction):
0 commit comments