Skip to content

Commit

Permalink
Join on snmp processes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlashner committed Dec 18, 2024
1 parent d8adce5 commit 0e5f9f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/integration/test_ibootbar_agent_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ def start_responder():
p = Process(target=responder.main)
p.start()
yield
os.kill(p.pid, signal.SIGKILL)
p.kill()
p.join()


@pytest.mark.integtest
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/test_ups_agent_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def start_responder():
p = Process(target=responder.main)
p.start()
yield
os.kill(p.pid, signal.SIGKILL)
p.kill()
p.join()


@pytest.mark.integtest
Expand Down

0 comments on commit 0e5f9f2

Please sign in to comment.