File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed
Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -58,17 +58,17 @@ jobs:
5858 # TARGET: runce
5959 # run: python tests/remove_emojis.py
6060
61- # - name: Run tests/test_windows.py
62- # run: python tests/test_windows.py
63- # continue-on-error: true
61+ - name : Run tests/test_windows.py
62+ run : python tests/test_windows.py
63+ continue-on-error : true
6464
65- # - name: Run tests/test_utils.py
66- # run: python tests/test_utils.py
67- # continue-on-error: true
65+ - name : Run tests/test_utils.py
66+ run : python tests/test_utils.py
67+ continue-on-error : true
6868
69- # - name: Run tests/test_cli.py
70- # run: python tests/test_cli.py
71- # continue-on-error: true
69+ - name : Run tests/test_cli.py
70+ run : python tests/test_cli.py
71+ continue-on-error : true
7272
73- - name : Run tests
74- run : python -m pytest
73+ # - name: Run tests
74+ # run: python -m pytest
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ def check_pid(pid: int) -> bool:
132132def kill_pid (
133133 pid : int , sig : Optional [int ] = None , process_group : Optional [bool ] = None
134134) -> bool :
135- os .kill (pid , sig )
135+ os .kill (pid , signal . SIGTERM if sig is None else sig )
136136
137137
138138def task_kill (pid ):
You can’t perform that action at this time.
0 commit comments