Stop the test server
(proc: subprocess.Popen)
| 63 | return proc |
| 64 | |
| 65 | def stop_test_server(proc: subprocess.Popen): |
| 66 | """Stop the test server""" |
| 67 | try: |
| 68 | proc.terminate() |
| 69 | proc.wait(timeout=5) |
| 70 | except subprocess.TimeoutExpired: |
| 71 | proc.kill() |
| 72 | proc.wait() |
| 73 | |
| 74 | def get_simple_test_messages(): |
| 75 | """Get simple test messages for basic validation""" |
no outgoing calls
no test coverage detected