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
|
testing/acceptance_test.py | 5 +++++
testing/python/collect.py | 3 +++
testing/python/fixture.py | 14 ++++++++++++++
testing/python/integration.py | 1 +
testing/python/metafunc.py | 3 +++
testing/test_assertion.py | 5 +++++
testing/test_assertrewrite.py | 3 +++
testing/test_capture.py | 6 ++++++
testing/test_collection.py | 1 +
testing/test_config.py | 3 +++
testing/test_conftest.py | 3 +++
testing/test_helpconfig.py | 1 +
testing/test_junitxml.py | 1 +
testing/test_mark.py | 1 +
testing/test_monkeypatch.py | 1 +
testing/test_skipping.py | 3 +++
testing/test_terminal.py | 2 ++
testing/test_unittest.py | 3 +++
18 files changed, 59 insertions(+)
diff --git a/testing/acceptance_test.py b/testing/acceptance_test.py
index b9a3fa3..7875d94 100644
--- a/testing/acceptance_test.py
+++ b/testing/acceptance_test.py
@@ -127,6 +127,7 @@ class TestGeneralUsage:
"*ERROR: not found:*%s" %(p2.basename,)
])
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_issue486_better_reporting_on_conftest_load_failure(self, testdir):
testdir.makepyfile("")
testdir.makeconftest("import qwerty")
@@ -209,6 +210,8 @@ class TestGeneralUsage:
result = testdir.runpython(p)
assert not result.ret
+ # https://github.com/pytest-dev/pytest/issues/1162
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_issue109_sibling_conftests_not_loaded(self, testdir):
sub1 = testdir.tmpdir.mkdir("sub1")
sub2 = testdir.tmpdir.mkdir("sub2")
@@ -350,6 +353,7 @@ class TestGeneralUsage:
res = testdir.runpytest(p.basename)
assert res.ret == 0
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_unknown_option(self, testdir):
result = testdir.runpytest("--qwlkej")
result.stderr.fnmatch_lines("""
@@ -657,6 +661,7 @@ class TestDurations:
])
+@pytest.mark.skipif('"__pypy__" in sys.modules')
class TestDurationWithFixture:
source = """
import time
diff --git a/testing/python/collect.py b/testing/python/collect.py
index bebc133..1cf0a80 100644
--- a/testing/python/collect.py
+++ b/testing/python/collect.py
@@ -27,6 +27,7 @@ class TestModule:
"*HINT*",
])
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_import_prepend_append(self, testdir, monkeypatch):
syspath = list(sys.path)
monkeypatch.setattr(sys, "path", syspath)
@@ -57,6 +58,7 @@ class TestModule:
pytest.raises(ImportError, lambda: modcol.obj)
class TestClass:
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_class_with_init_warning(self, testdir):
testdir.makepyfile("""
class TestClass1:
@@ -659,6 +661,7 @@ class TestConftestCustomization:
l = modcol.collect()
assert '_hello' not in l
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_setup_only_available_in_subdir(testdir):
sub1 = testdir.mkpydir("sub1")
sub2 = testdir.mkpydir("sub2")
diff --git a/testing/python/fixture.py b/testing/python/fixture.py
index 2031764..22e620a 100644
--- a/testing/python/fixture.py
+++ b/testing/python/fixture.py
@@ -83,6 +83,7 @@ class TestFillFixtures:
"*1 passed*"
])
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_conftest_funcargs_only_available_in_subdir(self, testdir):
sub1 = testdir.mkpydir("sub1")
sub2 = testdir.mkpydir("sub2")
@@ -606,6 +607,7 @@ class TestRequestBasic:
reprec = testdir.inline_run("-v")
reprec.assertoutcome(passed=3)
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_fixtures_sub_subdir_normalize_sep(self, testdir):
# this tests that normalization of nodeids takes place
b = testdir.mkdir("tests").mkdir("unit")
@@ -953,6 +955,7 @@ class TestFixtureUsages:
"*2 passed*"
])
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_factory_uses_unknown_funcarg_as_dependency_error(self, testdir):
testdir.makepyfile("""
import pytest
@@ -1049,6 +1052,7 @@ class TestFixtureUsages:
reprec = testdir.inline_run()
reprec.assertoutcome(passed=2)
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_usefixtures_seen_in_showmarkers(self, testdir):
result = testdir.runpytest("--markers")
result.stdout.fnmatch_lines("""
@@ -1157,6 +1161,7 @@ class TestFixtureManagerParseFactories:
reprec = testdir.inline_run("-s")
reprec.assertoutcome(passed=1)
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_parsefactories_relative_node_ids(self, testdir):
# example mostly taken from:
# https://mail.python.org/pipermail/pytest-dev/2014-September/002617.html
@@ -1305,6 +1310,7 @@ class TestAutouseDiscovery:
reprec = testdir.inline_run("-s")
reprec.assertoutcome(failed=0, passed=0)
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_autouse_in_conftests(self, testdir):
a = testdir.mkdir("a")
b = testdir.mkdir("a1")
@@ -1890,6 +1896,7 @@ class TestFixtureMarker:
l = reprec.getcalls("pytest_runtest_call")[0].item.module.l
assert l == [1,1,2,2]
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_module_parametrized_ordering(self, testdir):
testdir.makeconftest("""
import pytest
@@ -1936,6 +1943,7 @@ class TestFixtureMarker:
test_mod1.py::test_func1[m2] PASSED
""")
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_class_ordering(self, testdir):
testdir.makeconftest("""
import pytest
@@ -1984,6 +1992,7 @@ class TestFixtureMarker:
test_class_ordering.py::TestClass::test_3[2-b] PASSED
""")
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_parametrize_separated_order_higher_scope_first(self, testdir):
testdir.makepyfile("""
import pytest
@@ -2028,6 +2037,7 @@ class TestFixtureMarker:
pprint.pprint(list(zip(l, expected)))
assert l == expected
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_parametrized_fixture_teardown_order(self, testdir):
testdir.makepyfile("""
import pytest
@@ -2065,6 +2075,7 @@ class TestFixtureMarker:
""")
assert "error" not in result.stdout.str()
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_fixture_finalizer(self, testdir):
testdir.makeconftest("""
import pytest
@@ -2385,6 +2396,7 @@ class TestErrors:
"*1 error*",
])
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_issue498_fixture_finalizer_failing(self, testdir):
testdir.makepyfile("""
import pytest
@@ -2431,6 +2443,7 @@ class TestErrors:
"*1 error*",
])
+@pytest.mark.skipif('"__pypy__" in sys.modules')
class TestShowFixtures:
def test_funcarg_compat(self, testdir):
config = testdir.parseconfigure("--funcargs")
@@ -2561,6 +2574,7 @@ class TestShowFixtures:
""")
+@pytest.mark.skipif('"__pypy__" in sys.modules')
class TestContextManagerFixtureFuncs:
def test_simple(self, testdir):
testdir.makepyfile("""
diff --git a/testing/python/integration.py b/testing/python/integration.py
index 0c436e3..1d0b4ee 100644
--- a/testing/python/integration.py
+++ b/testing/python/integration.py
@@ -202,6 +202,7 @@ class TestMockDecoration:
class TestReRunTests:
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_rerun(self, testdir):
testdir.makeconftest("""
from _pytest.runner import runtestprotocol
diff --git a/testing/python/metafunc.py b/testing/python/metafunc.py
index 111ca61..cd2e86d 100644
--- a/testing/python/metafunc.py
+++ b/testing/python/metafunc.py
@@ -475,6 +475,7 @@ class TestMetafunc:
reprec = testdir.inline_run()
reprec.assertoutcome(passed=2)
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_parametrize_class_scenarios(self, testdir):
testdir.makepyfile("""
# same as doc/en/example/parametrize scenario example
@@ -766,6 +767,7 @@ class TestMetafuncFunctional:
"*test_function*advanced*FAILED",
])
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_parametrize_without_ids(self, testdir):
testdir.makepyfile("""
import pytest
@@ -835,6 +837,7 @@ class TestMetafuncFunctional:
reprec = testdir.runpytest()
reprec.assert_outcomes(passed=1)
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_generate_tests_only_done_in_subdir(self, testdir):
sub1 = testdir.mkpydir("sub1")
sub2 = testdir.mkpydir("sub2")
diff --git a/testing/test_assertion.py b/testing/test_assertion.py
index 914fedd..fb0d0e2 100644
--- a/testing/test_assertion.py
+++ b/testing/test_assertion.py
@@ -120,6 +120,7 @@ class TestAssert_reprcompare:
""")
]
)
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_iterable_full_diff(self, left, right, expected):
"""Test the full diff assertion failure explanation.
@@ -348,6 +349,7 @@ class TestFormatExplanation:
assert util.format_explanation(expl) == res
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_python25_compile_issue257(testdir):
testdir.makepyfile("""
def test_rewritten():
@@ -559,6 +561,7 @@ def test_warn_missing(testdir):
"*WARNING*assert statements are not executed*",
])
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_recursion_source_decode(testdir):
testdir.makepyfile("""
def test_something():
@@ -573,6 +576,7 @@ def test_recursion_source_decode(testdir):
<Module*>
""")
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_AssertionError_message(testdir):
testdir.makepyfile("""
def test_hello():
@@ -587,6 +591,7 @@ def test_AssertionError_message(testdir):
""")
@pytest.mark.skipif(PY3, reason='This bug does not exist on PY3')
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_set_with_unsortable_elements():
# issue #718
class UnsortableKey(object):
diff --git a/testing/test_assertrewrite.py b/testing/test_assertrewrite.py
index 544250a..9dad082 100644
--- a/testing/test_assertrewrite.py
+++ b/testing/test_assertrewrite.py
@@ -307,6 +307,7 @@ class TestAssertionRewrite:
assert g(**{x : 2})
assert getmsg(f, ns) == """assert g(**{'a': 2})"""
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_attribute(self):
class X(object):
g = 3
@@ -343,6 +344,7 @@ class TestAssertionRewrite:
assert b < c
getmsg(f, must_pass=True)
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_len(self):
def f():
l = list(range(10))
@@ -641,6 +643,7 @@ class TestAssertionRewriteHookDetails(object):
assert _read_pyc(source, str(pyc)) is None # no error
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_reload_is_same(self, testdir):
# A file that will be picked up during collecting.
testdir.tmpdir.join("file.py").ensure()
diff --git a/testing/test_capture.py b/testing/test_capture.py
index 5393335..0d2c238 100644
--- a/testing/test_capture.py
+++ b/testing/test_capture.py
@@ -479,6 +479,8 @@ class TestCaptureFixture:
assert 'closed' not in result.stderr.str()
+# https://github.com/pytest-dev/pytest/issues/1162
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_setup_failure_does_not_kill_capturing(testdir):
sub1 = testdir.mkpydir("sub1")
sub1.join("conftest.py").write(py.code.Source("""
@@ -518,6 +520,7 @@ def test_capture_conftest_runtest_setup(testdir):
assert 'hello19' not in result.stdout.str()
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_capture_badoutput_issue412(testdir):
testdir.makepyfile("""
import os
@@ -897,6 +900,7 @@ class TestStdCaptureFD(TestStdCapture):
pytestmark = needsosdup
captureclass = staticmethod(StdCaptureFD)
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_simple_only_fd(self, testdir):
testdir.makepyfile("""
import os
@@ -981,6 +985,7 @@ def test_fdcapture_tmpfile_remains_the_same(tmpfile, use):
assert capfile2 == capfile
@needsosdup
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_close_and_capture_again(testdir):
testdir.makepyfile("""
import os
@@ -1001,6 +1006,7 @@ def test_close_and_capture_again(testdir):
@pytest.mark.parametrize('method', ['SysCapture', 'FDCapture'])
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_capturing_and_logging_fundamentals(testdir, method):
if method == "StdCaptureFD" and not hasattr(os, 'dup'):
pytest.skip("need os.dup")
diff --git a/testing/test_collection.py b/testing/test_collection.py
index 749c5b7..65370a6 100644
--- a/testing/test_collection.py
+++ b/testing/test_collection.py
@@ -287,6 +287,7 @@ class TestCustomConftests:
"*test_x*"
])
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_pytest_collect_file_from_sister_dir(self, testdir):
sub1 = testdir.mkpydir("sub1")
sub2 = testdir.mkpydir("sub2")
diff --git a/testing/test_config.py b/testing/test_config.py
index d497200..2987072 100644
--- a/testing/test_config.py
+++ b/testing/test_config.py
@@ -47,6 +47,7 @@ class TestParseIni:
])
@pytest.mark.parametrize("name", "setup.cfg tox.ini pytest.ini".split())
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_ini_names(self, testdir, name):
testdir.tmpdir.join(name).write(py.std.textwrap.dedent("""
[pytest]
@@ -55,6 +56,7 @@ class TestParseIni:
config = testdir.parseconfig()
assert config.getini("minversion") == "1.0"
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_toxini_before_lower_pytestini(self, testdir):
sub = testdir.tmpdir.mkdir("sub")
sub.join("tox.ini").write(py.std.textwrap.dedent("""
@@ -418,6 +420,7 @@ class TestWarning:
reprec = testdir.inline_run()
reprec.assertoutcome(passed=1)
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_warn_on_test_item_from_request(self, testdir):
testdir.makepyfile("""
import pytest
diff --git a/testing/test_conftest.py b/testing/test_conftest.py
index a0b77cf..3d07597 100644
--- a/testing/test_conftest.py
+++ b/testing/test_conftest.py
@@ -204,6 +204,7 @@ def test_conftest_import_order(testdir, monkeypatch):
assert conftest._getconftestmodules(sub) == [ct1, ct2]
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_fixture_dependency(testdir, monkeypatch):
ct1 = testdir.makeconftest("")
ct1 = testdir.makepyfile("__init__.py")
@@ -241,6 +242,7 @@ def test_fixture_dependency(testdir, monkeypatch):
result.stdout.fnmatch_lines(["*1 passed*"])
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_conftest_found_with_double_dash(testdir):
sub = testdir.mkdir("sub")
sub.join("conftest.py").write(py.std.textwrap.dedent("""
@@ -259,6 +261,7 @@ def test_conftest_found_with_double_dash(testdir):
""")
+@pytest.mark.skipif('"__pypy__" in sys.modules')
class TestConftestVisibility:
def _setup_tree(self, testdir): # for issue616
# example mostly taken from:
diff --git a/testing/test_helpconfig.py b/testing/test_helpconfig.py
index 9f8d87b..2ecd20d 100644
--- a/testing/test_helpconfig.py
+++ b/testing/test_helpconfig.py
@@ -14,6 +14,7 @@ def test_version(testdir, pytestconfig):
"*at*",
])
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_help(testdir):
result = testdir.runpytest("--help")
assert result.ret == 0
diff --git a/testing/test_junitxml.py b/testing/test_junitxml.py
index e6db810..1180ea7 100644
--- a/testing/test_junitxml.py
+++ b/testing/test_junitxml.py
@@ -175,6 +175,7 @@ class TestPython:
classname="test_classname_instance.TestClass",
name="test_method")
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_classname_nested_dir(self, testdir):
p = testdir.tmpdir.ensure("sub", "test_hello.py")
p.write("def test_func(): 0/0")
diff --git a/testing/test_mark.py b/testing/test_mark.py
index 1aa3361..242a65d 100644
--- a/testing/test_mark.py
+++ b/testing/test_mark.py
@@ -133,6 +133,7 @@ def test_markers_option(testdir):
"*a1some*another marker",
])
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_markers_option_with_plugin_in_current_dir(testdir):
testdir.makeconftest('pytest_plugins = "flip_flop"')
testdir.makepyfile(flip_flop="""\
diff --git a/testing/test_monkeypatch.py b/testing/test_monkeypatch.py
index 048c942..0c87b4e 100644
--- a/testing/test_monkeypatch.py
+++ b/testing/test_monkeypatch.py
@@ -256,6 +256,7 @@ def test_chdir_double_undo(mp, tmpdir):
assert os.getcwd() == tmpdir.strpath
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_issue185_time_breaks(testdir):
testdir.makepyfile("""
import time
diff --git a/testing/test_skipping.py b/testing/test_skipping.py
index 1048c94..ea5cf44 100644
--- a/testing/test_skipping.py
+++ b/testing/test_skipping.py
@@ -263,6 +263,7 @@ class TestXFail:
result = testdir.runpytest(p, "--runxfail")
result.stdout.fnmatch_lines("*1 pass*")
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_xfail_imperative_in_setup_function(self, testdir):
p = testdir.makepyfile("""
import pytest
@@ -671,6 +672,7 @@ def test_xfail_test_setup_exception(testdir):
assert 'xfailed' in result.stdout.str()
assert 'xpassed' not in result.stdout.str()
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_imperativeskip_on_xfail_test(testdir):
testdir.makepyfile("""
import pytest
@@ -694,6 +696,7 @@ def test_imperativeskip_on_xfail_test(testdir):
*2 skipped*
""")
+@pytest.mark.skipif('"__pypy__" in sys.modules')
class TestBooleanCondition:
def test_skipif(self, testdir):
testdir.makepyfile("""
diff --git a/testing/test_terminal.py b/testing/test_terminal.py
index 305d60a..d503be8 100644
--- a/testing/test_terminal.py
+++ b/testing/test_terminal.py
@@ -264,6 +264,7 @@ class TestCollectonly:
"* <Function 'test_method'*>",
])
+ @pytest.mark.skipif('"__pypy__" in sys.modules')
def test_collectonly_error(self, testdir):
p = testdir.makepyfile("import Errlkjqweqwe")
result = testdir.runpytest("--collect-only", p)
@@ -726,6 +727,7 @@ def test_tbstyle_native_setup_error(testdir):
'*File *test_tbstyle_native_setup_error.py", line *, in setup_error_fixture*'
])
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_terminal_summary(testdir):
testdir.makeconftest("""
def pytest_terminal_summary(terminalreporter):
diff --git a/testing/test_unittest.py b/testing/test_unittest.py
index 53dde6e..52eeae0 100644
--- a/testing/test_unittest.py
+++ b/testing/test_unittest.py
@@ -14,6 +14,7 @@ def test_simple_unittest(testdir):
assert reprec.matchreport("testpassing").passed
assert reprec.matchreport("test_failing").failed
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_runTest_method(testdir):
testdir.makepyfile("""
import unittest
@@ -705,6 +706,7 @@ def test_issue333_result_clearing(testdir):
reprec.assertoutcome(failed=1)
@pytest.mark.skipif("sys.version_info < (2,7)")
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_unittest_raise_skip_issue748(testdir):
testdir.makepyfile(test_foo="""
import unittest
@@ -720,6 +722,7 @@ def test_unittest_raise_skip_issue748(testdir):
""")
@pytest.mark.skipif("sys.version_info < (2,7)")
+@pytest.mark.skipif('"__pypy__" in sys.modules')
def test_unittest_skip_issue1169(testdir):
testdir.makepyfile(test_foo="""
import unittest
|