Closed
Description
Seems that #420 adds a check for:
if getattr(pytest, "__version_tuple__", (0, 0, 0) < (7,)):
...
Although that module has no __version_tuple__
attribute, so the fallback value is used:
python -c "import pytest; pytest.__version_tuple__"
Raises:
AttributeError: module pytest has no attribute __version_tuple__. Did you mean: 'version_tuple'?
$ pytest --version
>>> pytest 7.1.3