/
niceSOFT
/
python3-pytest
Обзор
Документация
Войти
/
niceSOFT
/
python3-pytest
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.0.1
testing/test_entry_points.py
7 строк
252 B
Zac Hatfield-Dodds
Drop Python 3.7
01 июл 2023, 00:55
01 июл 2023, 00:55
f4e3b4a
Код
Авторство
О чём код?
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