-
-
Notifications
You must be signed in to change notification settings - Fork 373
/
test_kernel.py
718 lines (596 loc) · 23.5 KB
/
test_kernel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
"""test the IPython Kernel"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
import ast
import os.path
import platform
import signal
import subprocess
import sys
import time
from datetime import datetime, timedelta
from subprocess import Popen
from tempfile import TemporaryDirectory
import IPython
import psutil
import pytest
from flaky import flaky
from IPython.paths import locate_profile
from .utils import (
TIMEOUT,
assemble_output,
execute,
flush_channels,
get_reply,
kernel,
new_kernel,
wait_for_idle,
)
def _check_main(kc, expected=True, stream="stdout"):
execute(kc=kc, code="import sys")
flush_channels(kc)
msg_id, content = execute(kc=kc, code="print(sys.%s._is_main_process())" % stream)
stdout, stderr = assemble_output(kc.get_iopub_msg)
assert stdout.strip() == repr(expected)
def _check_status(content):
"""If status=error, show the traceback"""
if content["status"] == "error":
raise AssertionError("".join(["\n"] + content["traceback"]))
# printing tests
def test_simple_print():
"""simple print statement in kernel"""
with kernel() as kc:
msg_id, content = execute(kc=kc, code="print('hi')")
stdout, stderr = assemble_output(kc.get_iopub_msg)
assert stdout == "hi\n"
assert stderr == ""
_check_main(kc, expected=True)
def test_print_to_correct_cell_from_thread():
"""should print to the cell that spawned the thread, not a subsequently run cell"""
iterations = 5
interval = 0.25
code = f"""\
from threading import Thread
from time import sleep
def thread_target():
for i in range({iterations}):
print(i, end='', flush=True)
sleep({interval})
Thread(target=thread_target).start()
"""
with kernel() as kc:
thread_msg_id = kc.execute(code)
_ = kc.execute("pass")
received = 0
while received < iterations:
msg = kc.get_iopub_msg(timeout=interval * 2)
if msg["msg_type"] != "stream":
continue
content = msg["content"]
assert content["name"] == "stdout"
assert content["text"] == str(received)
# this is crucial as the parent header decides to which cell the output goes
assert msg["parent_header"]["msg_id"] == thread_msg_id
received += 1
def test_print_to_correct_cell_from_child_thread():
"""should print to the cell that spawned the thread, not a subsequently run cell"""
iterations = 5
interval = 0.25
code = f"""\
from threading import Thread
from time import sleep
def child_target():
for i in range({iterations}):
print(i, end='', flush=True)
sleep({interval})
def parent_target():
sleep({interval})
Thread(target=child_target).start()
Thread(target=parent_target).start()
"""
with kernel() as kc:
thread_msg_id = kc.execute(code)
_ = kc.execute("pass")
received = 0
while received < iterations:
msg = kc.get_iopub_msg(timeout=interval * 2)
if msg["msg_type"] != "stream":
continue
content = msg["content"]
assert content["name"] == "stdout"
assert content["text"] == str(received)
# this is crucial as the parent header decides to which cell the output goes
assert msg["parent_header"]["msg_id"] == thread_msg_id
received += 1
def test_print_to_correct_cell_from_asyncio():
"""should print to the cell that scheduled the task, not a subsequently run cell"""
iterations = 5
interval = 0.25
code = f"""\
import asyncio
async def async_task():
for i in range({iterations}):
print(i, end='', flush=True)
await asyncio.sleep({interval})
loop = asyncio.get_event_loop()
loop.create_task(async_task());
"""
with kernel() as kc:
thread_msg_id = kc.execute(code)
_ = kc.execute("pass")
received = 0
while received < iterations:
msg = kc.get_iopub_msg(timeout=interval * 2)
if msg["msg_type"] != "stream":
continue
content = msg["content"]
assert content["name"] == "stdout"
assert content["text"] == str(received)
# this is crucial as the parent header decides to which cell the output goes
assert msg["parent_header"]["msg_id"] == thread_msg_id
received += 1
@pytest.mark.skip(reason="Currently don't capture during test as pytest does its own capturing")
def test_capture_fd():
"""simple print statement in kernel"""
with kernel() as kc:
iopub = kc.iopub_channel
msg_id, content = execute(kc=kc, code="import os; os.system('echo capsys')")
stdout, stderr = assemble_output(iopub)
assert stdout == "capsys\n"
assert stderr == ""
_check_main(kc, expected=True)
@pytest.mark.skip(reason="Currently don't capture during test as pytest does its own capturing")
def test_subprocess_peek_at_stream_fileno():
with kernel() as kc:
iopub = kc.iopub_channel
msg_id, content = execute(
kc=kc,
code="import subprocess, sys; subprocess.run(['python', '-c', 'import os; os.system(\"echo CAP1\"); print(\"CAP2\")'], stderr=sys.stderr)",
)
stdout, stderr = assemble_output(iopub)
assert stdout == "CAP1\nCAP2\n"
assert stderr == ""
_check_main(kc, expected=True)
def test_sys_path():
"""test that sys.path doesn't get messed up by default"""
with kernel() as kc:
msg_id, content = execute(kc=kc, code="import sys; print(repr(sys.path))")
stdout, stderr = assemble_output(kc.get_iopub_msg)
# for error-output on failure
sys.stderr.write(stderr)
sys_path = ast.literal_eval(stdout.strip())
assert "" in sys_path
def test_sys_path_profile_dir():
"""test that sys.path doesn't get messed up when `--profile-dir` is specified"""
with new_kernel(["--profile-dir", locate_profile("default")]) as kc:
msg_id, content = execute(kc=kc, code="import sys; print(repr(sys.path))")
stdout, stderr = assemble_output(kc.get_iopub_msg)
# for error-output on failure
sys.stderr.write(stderr)
sys_path = ast.literal_eval(stdout.strip())
assert "" in sys_path
@flaky(max_runs=3)
@pytest.mark.skipif(
sys.platform == "win32" or (sys.platform == "darwin"),
reason="subprocess prints fail on Windows and MacOS Python 3.8+",
)
def test_subprocess_print():
"""printing from forked mp.Process"""
with new_kernel() as kc:
_check_main(kc, expected=True)
flush_channels(kc)
np = 5
code = "\n".join(
[
"import time",
"import multiprocessing as mp",
"pool = [mp.Process(target=print, args=('hello', i,)) for i in range(%i)]" % np,
"for p in pool: p.start()",
"for p in pool: p.join()",
"time.sleep(0.5),",
]
)
msg_id, content = execute(kc=kc, code=code)
stdout, stderr = assemble_output(kc.get_iopub_msg)
assert stdout.count("hello") == np, stdout
for n in range(np):
assert stdout.count(str(n)) == 1, stdout
assert stderr == ""
_check_main(kc, expected=True)
_check_main(kc, expected=True, stream="stderr")
@flaky(max_runs=3)
def test_subprocess_noprint():
"""mp.Process without print doesn't trigger iostream mp_mode"""
with kernel() as kc:
np = 5
code = "\n".join(
[
"import multiprocessing as mp",
"pool = [mp.Process(target=range, args=(i,)) for i in range(%i)]" % np,
"for p in pool: p.start()",
"for p in pool: p.join()",
]
)
msg_id, content = execute(kc=kc, code=code)
stdout, stderr = assemble_output(kc.get_iopub_msg)
assert stdout == ""
assert stderr == ""
_check_main(kc, expected=True)
_check_main(kc, expected=True, stream="stderr")
@flaky(max_runs=3)
@pytest.mark.skipif(
(sys.platform == "win32") or (sys.platform == "darwin"),
reason="subprocess prints fail on Windows and MacOS Python 3.8+",
)
def test_subprocess_error():
"""error in mp.Process doesn't crash"""
with new_kernel() as kc:
code = "\n".join(
[
"import multiprocessing as mp",
"p = mp.Process(target=int, args=('hi',))",
"p.start()",
"p.join()",
]
)
msg_id, content = execute(kc=kc, code=code)
stdout, stderr = assemble_output(kc.get_iopub_msg)
assert stdout == ""
assert "ValueError" in stderr
_check_main(kc, expected=True)
_check_main(kc, expected=True, stream="stderr")
# raw_input tests
def test_raw_input():
"""test input"""
with kernel() as kc:
input_f = "input"
theprompt = "prompt> "
code = f'print({input_f}("{theprompt}"))'
kc.execute(code, allow_stdin=True)
msg = kc.get_stdin_msg(timeout=TIMEOUT)
assert msg["header"]["msg_type"] == "input_request"
content = msg["content"]
assert content["prompt"] == theprompt
text = "some text"
kc.input(text)
reply = kc.get_shell_msg(timeout=TIMEOUT)
assert reply["content"]["status"] == "ok"
stdout, stderr = assemble_output(kc.get_iopub_msg)
assert stdout == text + "\n"
def test_save_history():
# Saving history from the kernel with %hist -f was failing because of
# unicode problems on Python 2.
with kernel() as kc, TemporaryDirectory() as td:
file = os.path.join(td, "hist.out")
execute("a=1", kc=kc)
wait_for_idle(kc)
execute('b="abcþ"', kc=kc)
wait_for_idle(kc)
_, reply = execute("%hist -f " + file, kc=kc)
assert reply["status"] == "ok"
with open(file, encoding="utf-8") as f:
content = f.read()
assert "a=1" in content
assert 'b="abcþ"' in content
def test_smoke_faulthandler():
pytest.importorskip("faulthandler", reason="this test needs faulthandler")
with kernel() as kc:
# Note: faulthandler.register is not available on windows.
code = "\n".join(
[
"import sys",
"import faulthandler",
"import signal",
"faulthandler.enable()",
'if not sys.platform.startswith("win32"):',
" faulthandler.register(signal.SIGTERM)",
]
)
_, reply = execute(code, kc=kc)
assert reply["status"] == "ok", reply.get("traceback", "")
def test_help_output():
"""ipython kernel --help-all works"""
cmd = [sys.executable, "-m", "IPython", "kernel", "--help-all"]
proc = subprocess.run(cmd, timeout=30, capture_output=True, check=True)
assert proc.returncode == 0, proc.stderr
assert b"Traceback" not in proc.stderr
assert b"Options" in proc.stdout
assert b"Class" in proc.stdout
def test_is_complete():
with kernel() as kc:
# There are more test cases for this in core - here we just check
# that the kernel exposes the interface correctly.
kc.is_complete("2+2")
reply = kc.get_shell_msg(timeout=TIMEOUT)
assert reply["content"]["status"] == "complete"
# SyntaxError
kc.is_complete("raise = 2")
reply = kc.get_shell_msg(timeout=TIMEOUT)
assert reply["content"]["status"] == "invalid"
kc.is_complete("a = [1,\n2,")
reply = kc.get_shell_msg(timeout=TIMEOUT)
assert reply["content"]["status"] == "incomplete"
assert reply["content"]["indent"] == ""
# Cell magic ends on two blank lines for console UIs
kc.is_complete("%%timeit\na\n\n")
reply = kc.get_shell_msg(timeout=TIMEOUT)
assert reply["content"]["status"] == "complete"
@pytest.mark.skipif(sys.platform != "win32", reason="only run on Windows")
def test_complete():
with kernel() as kc:
execute("a = 1", kc=kc)
wait_for_idle(kc)
cell = "import IPython\nb = a."
kc.complete(cell)
reply = kc.get_shell_msg(timeout=TIMEOUT)
c = reply["content"]
assert c["status"] == "ok"
start = cell.find("a.")
end = start + 2
assert c["cursor_end"] == cell.find("a.") + 2
assert c["cursor_start"] <= end
# there are many right answers for cursor_start,
# so verify application of the completion
# rather than the value of cursor_start
matches = c["matches"]
assert matches
for m in matches:
completed = cell[: c["cursor_start"]] + m
assert completed.startswith(cell)
def test_matplotlib_inline_on_import():
pytest.importorskip("matplotlib", reason="this test requires matplotlib")
with kernel() as kc:
cell = "\n".join(
["import matplotlib, matplotlib.pyplot as plt", "backend = matplotlib.get_backend()"]
)
_, reply = execute(cell, user_expressions={"backend": "backend"}, kc=kc)
_check_status(reply)
backend_bundle = reply["user_expressions"]["backend"]
_check_status(backend_bundle)
assert "backend_inline" in backend_bundle["data"]["text/plain"]
def test_message_order():
N = 100 # number of messages to test
with kernel() as kc:
_, reply = execute("a = 1", kc=kc)
_check_status(reply)
offset = reply["execution_count"] + 1
cell = "a += 1\na"
msg_ids = []
# submit N executions as fast as we can
for _ in range(N):
msg_ids.append(kc.execute(cell))
# check message-handling order
for i, msg_id in enumerate(msg_ids, offset):
reply = kc.get_shell_msg(timeout=TIMEOUT)
_check_status(reply["content"])
assert reply["content"]["execution_count"] == i
assert reply["parent_header"]["msg_id"] == msg_id
@pytest.mark.skipif(
sys.platform.startswith("linux") or sys.platform.startswith("darwin"),
reason="test only on windows",
)
def test_unc_paths():
with kernel() as kc, TemporaryDirectory() as td:
drive_file_path = os.path.join(td, "unc.txt")
with open(drive_file_path, "w+") as f:
f.write("# UNC test")
unc_root = "\\\\localhost\\C$"
file_path = os.path.splitdrive(os.path.dirname(drive_file_path))[1]
unc_file_path = os.path.join(unc_root, file_path[1:])
kc.execute(f"cd {unc_file_path:s}")
reply = kc.get_shell_msg(timeout=TIMEOUT)
assert reply["content"]["status"] == "ok"
out, err = assemble_output(kc.get_iopub_msg)
assert unc_file_path in out
flush_channels(kc)
kc.execute(code="ls")
reply = kc.get_shell_msg(timeout=TIMEOUT)
assert reply["content"]["status"] == "ok"
out, err = assemble_output(kc.get_iopub_msg)
assert "unc.txt" in out
kc.execute(code="cd")
reply = kc.get_shell_msg(timeout=TIMEOUT)
assert reply["content"]["status"] == "ok"
@pytest.mark.skipif(
platform.python_implementation() == "PyPy",
reason="does not work on PyPy",
)
def test_shutdown():
"""Kernel exits after polite shutdown_request"""
with new_kernel() as kc:
km = kc.parent
execute("a = 1", kc=kc)
wait_for_idle(kc)
kc.shutdown()
for _ in range(300): # 30s timeout
if km.is_alive():
time.sleep(0.1)
else:
break
assert not km.is_alive()
def test_interrupt_during_input():
"""
The kernel exits after being interrupted while waiting in input().
input() appears to have issues other functions don't, and it needs to be
interruptible in order for pdb to be interruptible.
"""
with new_kernel() as kc:
km = kc.parent
msg_id = kc.execute("input()")
time.sleep(1) # Make sure it's actually waiting for input.
km.interrupt_kernel()
from .test_message_spec import validate_message
# If we failed to interrupt interrupt, this will timeout:
reply = get_reply(kc, msg_id, TIMEOUT)
validate_message(reply, "execute_reply", msg_id)
@pytest.mark.skipif(os.name == "nt", reason="Message based interrupt not supported on Windows")
def test_interrupt_with_message():
with new_kernel() as kc:
km = kc.parent
km.kernel_spec.interrupt_mode = "message"
msg_id = kc.execute("input()")
time.sleep(1) # Make sure it's actually waiting for input.
km.interrupt_kernel()
from .test_message_spec import validate_message
# If we failed to interrupt interrupt, this will timeout:
reply = get_reply(kc, msg_id, TIMEOUT)
validate_message(reply, "execute_reply", msg_id)
@pytest.mark.skipif(
"__pypy__" in sys.builtin_module_names,
reason="fails on pypy",
)
def test_interrupt_during_pdb_set_trace():
"""
The kernel exits after being interrupted while waiting in pdb.set_trace().
Merely testing input() isn't enough, pdb has its own issues that need
to be handled in addition.
This test will fail with versions of IPython < 7.14.0.
"""
with new_kernel() as kc:
km = kc.parent
msg_id = kc.execute("import pdb; pdb.set_trace()")
msg_id2 = kc.execute("3 + 4")
time.sleep(1) # Make sure it's actually waiting for input.
km.interrupt_kernel()
from .test_message_spec import validate_message
# If we failed to interrupt interrupt, this will timeout:
reply = get_reply(kc, msg_id, TIMEOUT)
validate_message(reply, "execute_reply", msg_id)
# If we failed to interrupt interrupt, this will timeout:
reply = get_reply(kc, msg_id2, TIMEOUT)
validate_message(reply, "execute_reply", msg_id2)
def test_control_thread_priority():
N = 5
with new_kernel() as kc:
msg_id = kc.execute("pass")
get_reply(kc, msg_id)
sleep_msg_id = kc.execute("import asyncio; await asyncio.sleep(2)")
# submit N shell messages
shell_msg_ids = []
for i in range(N):
shell_msg_ids.append(kc.execute(f"i = {i}"))
# ensure all shell messages have arrived at the kernel before any control messages
time.sleep(0.5)
# at this point, shell messages should be waiting in msg_queue,
# rather than zmq while the kernel is still in the middle of processing
# the first execution
# now send N control messages
control_msg_ids = []
for _ in range(N):
msg = kc.session.msg("kernel_info_request", {})
kc.control_channel.send(msg)
control_msg_ids.append(msg["header"]["msg_id"])
# finally, collect the replies on both channels for comparison
get_reply(kc, sleep_msg_id)
shell_replies = []
for msg_id in shell_msg_ids:
shell_replies.append(get_reply(kc, msg_id))
control_replies = []
for msg_id in control_msg_ids:
control_replies.append(get_reply(kc, msg_id, channel="control"))
# verify that all control messages were handled before all shell messages
shell_dates = [msg["header"]["date"] for msg in shell_replies]
control_dates = [msg["header"]["date"] for msg in control_replies]
# comparing first to last ought to be enough, since queues preserve order
# use <= in case of very-fast handling and/or low resolution timers
assert control_dates[-1] <= shell_dates[0]
def test_sequential_control_messages():
with new_kernel() as kc:
msg_id = kc.execute("import time")
get_reply(kc, msg_id)
# Send multiple messages on the control channel.
# Using execute messages to vary duration.
sleeps = [0.6, 0.3, 0.1]
# Prepare messages
msgs = [
kc.session.msg("execute_request", {"code": f"time.sleep({sleep})"}) for sleep in sleeps
]
msg_ids = [msg["header"]["msg_id"] for msg in msgs]
# Submit messages
for msg in msgs:
kc.control_channel.send(msg)
# Get replies
replies = [get_reply(kc, msg_id, channel="control") for msg_id in msg_ids]
def ensure_datetime(arg):
# Support arg which is a datetime or str.
if isinstance(arg, str):
if sys.version_info[:2] < (3, 11) and arg.endswith("Z"):
# Python < 3.11 doesn't support "Z" suffix in datetime.fromisoformat,
# so use alternative timezone format.
# https://github.com/python/cpython/issues/80010
arg = arg[:-1] + "+00:00"
return datetime.fromisoformat(arg)
return arg
# Check messages are processed in order, one at a time, and of a sensible duration.
previous_end = None
for reply, sleep in zip(replies, sleeps):
start = ensure_datetime(reply["metadata"]["started"])
end = ensure_datetime(reply["header"]["date"])
if previous_end is not None:
assert start >= previous_end
previous_end = end
assert end >= start + timedelta(seconds=sleep)
def _child():
print("in child", os.getpid())
def _print_and_exit(sig, frame):
print(f"Received signal {sig}")
# take some time so retries are triggered
time.sleep(0.5)
sys.exit(-sig)
signal.signal(signal.SIGTERM, _print_and_exit)
time.sleep(30)
def _start_children():
ip = IPython.get_ipython() # type:ignore[attr-defined]
ns = ip.user_ns
cmd = [sys.executable, "-c", f"from {__name__} import _child; _child()"]
child_pg = Popen(cmd, start_new_session=False)
child_newpg = Popen(cmd, start_new_session=True)
ns["pid"] = os.getpid()
ns["child_pg"] = child_pg.pid
ns["child_newpg"] = child_newpg.pid
# give them time to start up and register signal handlers
time.sleep(1)
@pytest.mark.skipif(
platform.python_implementation() == "PyPy",
reason="does not work on PyPy",
)
@pytest.mark.skipif(
sys.platform.lower() == "linux",
reason="Stalls on linux",
)
def test_shutdown_subprocesses():
"""Kernel exits after polite shutdown_request"""
with new_kernel() as kc:
km = kc.parent
msg_id, reply = execute(
f"from {__name__} import _start_children\n_start_children()",
kc=kc,
user_expressions={
"pid": "pid",
"child_pg": "child_pg",
"child_newpg": "child_newpg",
},
)
print(reply)
expressions = reply["user_expressions"]
kernel_process = psutil.Process(int(expressions["pid"]["data"]["text/plain"]))
child_pg = psutil.Process(int(expressions["child_pg"]["data"]["text/plain"]))
child_newpg = psutil.Process(int(expressions["child_newpg"]["data"]["text/plain"]))
wait_for_idle(kc)
kc.shutdown()
for _ in range(300): # 30s timeout
if km.is_alive():
time.sleep(0.1)
else:
break
assert not km.is_alive()
assert not kernel_process.is_running()
# child in the process group shut down
assert not child_pg.is_running()
# child outside the process group was not shut down (unix only)
if os.name != "nt":
assert child_newpg.is_running()
try:
child_newpg.terminate()
except psutil.NoSuchProcess:
pass