mirror of https://github.com/pytest-dev/pytest.git
11 lines
315 B
Python
11 lines
315 B
Python
# mypy: allow-untyped-defs
|
|
from __future__ import annotations
|
|
|
|
import importlib.metadata
|
|
|
|
|
|
def test_pytest_entry_points_are_identical():
|
|
dist = importlib.metadata.distribution("pytest")
|
|
entry_map = {ep.name: ep for ep in dist.entry_points}
|
|
assert entry_map["pytest"].value == entry_map["py.test"].value
|