Skip to content

Commit a28ff7c

Browse files
committed
skip metadata api tests from importlib_tests
1 parent fb82496 commit a28ff7c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

graalpython/lib-python/3/test/test_importlib/test_metadata_api.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
Distribution, PackageNotFoundError, distribution,
1010
entry_points, files, metadata, requires, version,
1111
)
12+
from test.support import impl_detail
1213

1314

1415
class APITests(
@@ -96,6 +97,7 @@ def test_requires_egg_info_file(self):
9697
requirements = requires('egginfo-file')
9798
self.assertIsNone(requirements)
9899

100+
@impl_detail("GR-26584: fix metadata api", graalvm=False)
99101
def test_requires_egg_info(self):
100102
deps = requires('egginfo-pkg')
101103
assert len(deps) == 2
@@ -111,6 +113,7 @@ def test_requires_dist_info(self):
111113
assert 'wheel >= 1.0' in deps
112114
assert "pytest; extra == 'test'" in deps
113115

116+
@impl_detail("GR-26584: fix metadata api", graalvm=False)
114117
def test_more_complex_deps_requires_text(self):
115118
requires = textwrap.dedent("""
116119
dep1

0 commit comments

Comments
 (0)