Skip to content

Commit 5899be3

Browse files
committed
More xfails.
1 parent 9ef92ff commit 5899be3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_pytest_cov.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1153,6 +1153,7 @@ def test_run():
11531153

11541154
@pytest.mark.skipif('sys.platform == "win32"', reason="SIGTERM isn't really supported on Windows")
11551155
@pytest.mark.xfail('sys.platform == "darwin"', reason="Something weird going on Macs...")
1156+
@pytest.mark.xfail('platform.python_implementation() == "PyPy"', reason="Interpreter seems buggy")
11561157
@pytest.mark.parametrize('setup', [
11571158
('signal.signal(signal.SIGTERM, signal.SIG_DFL); cleanup_on_sigterm()', '88% 18-19'),
11581159
('cleanup_on_sigterm()', '88% 18-19'),
@@ -1236,6 +1237,7 @@ def test_run():
12361237

12371238

12381239
@pytest.mark.skipif('sys.platform == "win32"', reason="fork not available on Windows")
1240+
@pytest.mark.xfail('platform.python_implementation() == "PyPy"', reason="Interpreter seems buggy")
12391241
def test_cleanup_on_sigterm_sig_ign(testdir):
12401242
script = testdir.makepyfile('''
12411243
import os, signal, subprocess, sys, time

0 commit comments

Comments
 (0)