Skip to content

Commit

Permalink
test finally to close ibootbar outlet
Browse files Browse the repository at this point in the history
  • Loading branch information
jlashner committed Dec 18, 2024
1 parent 100d412 commit 85db2c5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/integration/test_ibootbar_agent_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ def start_responder():
):
p = Process(target=responder.main)
p.start()
yield
os.kill(p.pid, signal.SIGINT)
try:
yield
finally:
os.kill(p.pid, signal.SIGINT)


@pytest.mark.integtest
Expand Down

0 comments on commit 85db2c5

Please sign in to comment.