Skip to content

Commit

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


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


@pytest.mark.integtest
Expand Down

0 comments on commit d8adce5

Please sign in to comment.