Skip to content

Commit ebad540

Browse files
authored
fix: run integration tests in session (#3801)
1 parent c6af34b commit ebad540

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/core/engine_adapter/integration/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ def ctx(
8989
ctx = TestContext(test_type, engine_adapter, mark, gateway, is_remote=is_remote)
9090
ctx.init()
9191

92-
yield ctx
92+
with ctx.engine_adapter.session({}):
93+
yield ctx
9394

9495
try:
9596
ctx.cleanup()

0 commit comments

Comments
 (0)