Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit ca3273d

Browse files
committed
e2e: stop server
1 parent 9efbeba commit ca3273d

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

engine/e2e-test/test_cli_engine_install.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
class TestCliEngineInstall:
1010
def setup_and_teardown(self):
1111
# Setup
12+
stop_server()
1213
success = start_server()
1314
if not success:
1415
raise Exception("Failed to start server")

engine/e2e-test/test_cli_engine_list.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class TestCliEngineList:
99
@pytest.fixture(autouse=True)
1010
def setup_and_teardown(self):
1111
# Setup
12+
stop_server()
1213
success = start_server()
1314
if not success:
1415
raise Exception("Failed to start server")

engine/e2e-test/test_cli_engine_uninstall.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class TestCliEngineUninstall:
1313
@pytest.fixture(autouse=True)
1414
def setup_and_teardown(self):
1515
# Setup
16+
stop_server()
1617
success = start_server()
1718
if not success:
1819
raise Exception("Failed to start server")

0 commit comments

Comments
 (0)