mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-30 16:57:29 -07:00
Fixes test problems with pypy3 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=564764 Package-Manager: portage-2.2.25 Signed-off-by: Justin Lecher <jlec@gentoo.org>
97 lines
3.7 KiB
Diff
97 lines
3.7 KiB
Diff
testing/acceptance_test.py | 2 ++
|
|
testing/python/collect.py | 1 +
|
|
testing/python/fixture.py | 1 +
|
|
testing/python/metafunc.py | 1 +
|
|
testing/test_capture.py | 3 ++-
|
|
testing/test_collection.py | 1 +
|
|
testing/test_junitxml.py | 1 +
|
|
7 files changed, 9 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/testing/acceptance_test.py b/testing/acceptance_test.py
|
|
index b9a3fa3..9db5017 100644
|
|
--- a/testing/acceptance_test.py
|
|
+++ b/testing/acceptance_test.py
|
|
@@ -209,6 +209,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")
|
|
diff --git a/testing/python/collect.py b/testing/python/collect.py
|
|
index 636f959..da9a291 100644
|
|
--- a/testing/python/collect.py
|
|
+++ b/testing/python/collect.py
|
|
@@ -659,6 +659,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..f52cf85 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")
|
|
diff --git a/testing/python/metafunc.py b/testing/python/metafunc.py
|
|
index 111ca61..bc489fa 100644
|
|
--- a/testing/python/metafunc.py
|
|
+++ b/testing/python/metafunc.py
|
|
@@ -835,6 +835,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_capture.py b/testing/test_capture.py
|
|
index 5393335..d7448e1 100644
|
|
--- a/testing/test_capture.py
|
|
+++ b/testing/test_capture.py
|
|
@@ -478,7 +478,8 @@ class TestCaptureFixture:
|
|
result = testdir.runpytest_subprocess(p)
|
|
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("""
|
|
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_junitxml.py b/testing/test_junitxml.py
|
|
index b25b6c7..3afd6f2 100644
|
|
--- a/testing/test_junitxml.py
|
|
+++ b/testing/test_junitxml.py
|
|
@@ -120,6 +120,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")
|