[Request] [+ ] D8628: tests: skip pyflakes for mercurial/thirdparty/

marmoute (Pierre-Yves David) phabricator at mercurial-scm.org
Sat Jun 13 09:07:27 UTC 2020


marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.

REVISION SUMMARY
  The current version of pyflakes (2.2.0) correctly detects one issue:
  
    mercurial/thirdparty/selectors2.py:335:40 '...'.format(...) has unused arguments at position(s): 1
  
  But we're not interested in fixing lint errors in third-party code, so we need
  to exclude at least selectors2.py. And in the discussion for this patch it was
  decided to just skip the entire thirdparty directory.
  
  This is a graft of a similar fix that ended up on default.

REPOSITORY
  rHG Mercurial

BRANCH
  stable

REVISION DETAIL
  https://phab.mercurial-scm.org/D8628

AFFECTED FILES
  tests/test-check-pyflakes.t

CHANGE DETAILS

diff --git a/tests/test-check-pyflakes.t b/tests/test-check-pyflakes.t
--- a/tests/test-check-pyflakes.t
+++ b/tests/test-check-pyflakes.t
@@ -16,9 +16,7 @@
   $ testrepohg locate 'set:**.py or grep("^#!.*python")' \
   > -X hgext/fsmonitor/pywatchman \
   > -X mercurial/pycompat.py -X contrib/python-zstandard \
-  > -X mercurial/thirdparty/cbor \
-  > -X mercurial/thirdparty/concurrent \
-  > -X mercurial/thirdparty/zope \
+  > -X mercurial/thirdparty \
   > 2>/dev/null \
   > | xargs $PYTHON -m pyflakes 2>/dev/null | "$TESTDIR/filterpyflakes.py"
   contrib/perf.py:*: undefined name 'xrange' (glob) (?)



To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20200613/c2e7ef30/attachment.html>


More information about the Mercurial-patches mailing list