Skip to content

Commit f18d038

Browse files
committed
Another pypy specialization.
1 parent d7a3850 commit f18d038

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_pytest_cov.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,10 @@ def test_run():
12591259
@pytest.mark.parametrize(
12601260
'setup',
12611261
[
1262-
('signal.signal(signal.SIGBREAK, signal.SIG_DFL)', '62% 4, 23-28'),
1262+
(
1263+
'signal.signal(signal.SIGBREAK, signal.SIG_DFL)',
1264+
'*% 4, 2*-28' if platform.python_implementation() == 'PyPy' else '62% 4, 23-28',
1265+
),
12631266
('signal.signal(signal.SIGBREAK, cleanup)', '100%'),
12641267
('', '*% 4, 2*-28' if platform.python_implementation() == 'PyPy' else '67% 4, 25-28'),
12651268
],

0 commit comments

Comments
 (0)