File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 19
19
SLEEP_300 = "sleep 300"
20
20
21
21
22
- @pytest .mark .skipif (
23
- "platform.system() == 'Windows'" , reason = "Expects signal -15 gets 15"
24
- )
25
22
@pytest .mark .parametrize ("command" , (SLEEP_300 , SLEEP_300 .split ()))
26
23
def test_running_process (command ):
27
24
"""Start process and shuts it down."""
@@ -36,9 +33,6 @@ def test_running_process(command):
36
33
assert SLEEP_300 in str (executor )
37
34
38
35
39
- @pytest .mark .skipif (
40
- "platform.system() == 'Windows'" , reason = "Expects signal -15 gets 15"
41
- )
42
36
@pytest .mark .parametrize ("command" , (SLEEP_300 , SLEEP_300 .split ()))
43
37
def test_command (command ):
44
38
"""Check that the command and command parts are equivalent."""
Original file line number Diff line number Diff line change @@ -91,7 +91,10 @@ def test_daemons_killing():
91
91
92
92
@pytest .mark .skipif (
93
93
"platform.system() == 'Windows'" ,
94
- reason = "Expects signal -15 gets 15 at the last stop" ,
94
+ reason = (
95
+ "Subprocess killed earlier than in 10 secs. "
96
+ "Blocking signals probably doesn't work."
97
+ ),
95
98
)
96
99
def test_stopping_brutally ():
97
100
"""
You can’t perform that action at this time.
0 commit comments