test_ok2/testing/test_entry_points.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
279 B
Python
Raw Normal View History

# mypy: allow-untyped-defs
2023-07-01 05:55:42 +08:00
import importlib.metadata
def test_pytest_entry_points_are_identical():
2023-07-01 05:55:42 +08:00
dist = importlib.metadata.distribution("pytest")
2019-04-07 08:32:47 +08:00
entry_map = {ep.name: ep for ep in dist.entry_points}
assert entry_map["pytest"].value == entry_map["py.test"].value