From 9f412f900bfe95b48c1e1a6a9c14e34f28093a68 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Thu, 30 Apr 2020 21:31:07 +0200 Subject: [PATCH] request-invoice: No need to kill background processes anymore --- request-invoice/test_request-invoice.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/request-invoice/test_request-invoice.py b/request-invoice/test_request-invoice.py index ed2e1bf..d639ae8 100644 --- a/request-invoice/test_request-invoice.py +++ b/request-invoice/test_request-invoice.py @@ -35,13 +35,3 @@ def test_requestinvoice_starts(node_factory): r = requests.get('http://localhost:8809/invoice/1000/text') assert(r.status_code == 429) assert("429 Too Many Requests" in r.text ) - - l1.rpc.plugin_stop(plugin_path) - l1.stop() - - # terminate background process - try: - full_path = "python3 " + plugin_path - check_output(["pkill","-f", full_path]) - except: - pass