From 6f7c393a3e32f06e62fc5ad6005cf381ed7d9f08 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Sat, 23 May 2020 22:09:46 +0200 Subject: add debugging prints() --- psutil/tests/test_process.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/psutil/tests/test_process.py b/psutil/tests/test_process.py index 6cc00089..6a1c1df7 100755 --- a/psutil/tests/test_process.py +++ b/psutil/tests/test_process.py @@ -1522,11 +1522,12 @@ class TestPopen(PsutilTestCase): print(6) # NOQA proc.terminate() print(7) # NOQA + print(8) # NOQA if POSIX: self.assertEqual(proc.wait(5), -signal.SIGTERM) else: self.assertEqual(proc.wait(5), signal.SIGTERM) - print(8) # NOQA + print(9) # NOQA def test_ctx_manager(self): with psutil.Popen([PYTHON_EXE, "-V"], -- cgit v1.2.1