how did you install flake8?
I try to build flake8 as RPM.
unmodified output of flake8 --bug-report
describe the problem
Hi, I'm trying to build pyflakes and flake8 with Python 3.14.0b2 in Fedora Linux.
With some compat bits gotten from both repositories, I'm down to one failing test:
____________ test_all_pyflakes_messages_have_flake8_codes_assigned _____________
def test_all_pyflakes_messages_have_flake8_codes_assigned():
"""Verify all PyFlakes messages have error codes assigned."""
messages = {
name
for name, obj in vars(pyflakes.messages).items()
if name[0].isupper() and obj.message
}
> assert messages == set(pyflakes_shim.FLAKE8_PYFLAKES_CODES)
E AssertionError: assert {'AssertTuple...rgument', ...} == {'AssertTuple...rgument', ...}
E
E Extra items in the left set:
E 'TStringMissingPlaceholders'
E
E Full diff:
E {
E 'AssertTuple',...
E
E ...Full output truncated (46 lines hidden), use '-vv' to show
tests/unit/test_pyflakes_codes.py:18: AssertionError