pytest-dev / py

Python development support library (note: maintenance only)
MIT License
67 stars 106 forks source link

Pytest collects the same tests multiple times after upgrading py to the newest version (1.8.1 -> 1.8.2) #246

Closed spryg closed 1 year ago

spryg commented 4 years ago

It is related to the changes in local.py

1.8.1: def __hash__(self): return hash(self.strpath)) 1.8.2: def __hash__(self): s = self.strpath if iswin32: s = s.lower() return hash(s)

bluetech commented 4 years ago

Can you provide a minimal reproduction?

RonnyPfannschmidt commented 1 year ago

No longer applies