Page MenuHomePhabricator

Fix pyflakes tests for recent pyflakes versions
ClosedPublic

Authored by jrtc27 on Jan 11 2021, 4:03 AM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 4 2024, 12:34 AM
Unknown Object (File)
Jan 7 2024, 10:18 AM
Unknown Object (File)
Jan 5 2024, 8:10 PM
Unknown Object (File)
Dec 24 2023, 8:05 AM
Unknown Object (File)
Dec 22 2023, 10:57 PM
Unknown Object (File)
Dec 17 2023, 1:19 PM
Unknown Object (File)
Nov 29 2023, 10:54 PM
Unknown Object (File)
Nov 26 2023, 12:03 AM
Subscribers

Details

Summary

Since 2.1.0 (commit 75bc0c03c145), pyflakes has included the Python
version and platform in its version output, so ignore it if present.

Since 2.2.0 (commit 6ba3f8e0b59b), pyflakes has included the column
number in its messages, so update the parser to include it and drop the
column number from the (only) test in order to work with both old and
new versions. Whilst here, assign names to the capture groups to make
the code clearer.

Test Plan

Ran arc unit

Diff Detail

Repository
rARC Arcanist
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 24997
Build 34487: arc lint + arc unit

Event Timeline

See T10038 for general context.

src/lint/linter/ArcanistPyFlakesLinter.php
38–39

Ideally, keep this under 80 characters (e.g., by putting $pattern = ... on a separate line).

This revision is now accepted and ready to land.Jan 11 2021, 4:09 AM

Stay under 80 characters (and format the other long preg_match a bit more nicely)