All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hanna Reitz <hreitz@redhat.com>
To: John Snow <jsnow@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>,
	Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
	Eduardo Habkost <ehabkost@redhat.com>,
	qemu-block@nongnu.org, qemu-devel <qemu-devel@nongnu.org>,
	Markus Armbruster <armbru@redhat.com>,
	Cleber Rosa <crosa@redhat.com>
Subject: Re: [PATCH v3 14/16] iotests/linters: Add workaround for mypy bug #9852
Date: Mon, 4 Oct 2021 10:31:10 +0200	[thread overview]
Message-ID: <096c3dd6-192f-dd84-65e6-44d7bbd05a23@redhat.com> (raw)
In-Reply-To: <CAFn=p-aAVq6MEHtrsfw3aV0y5eQzN8OpLWJjtZZ6RGXH1geTUQ@mail.gmail.com>

On 22.09.21 22:37, John Snow wrote:
>
>
> On Fri, Sep 17, 2021 at 7:16 AM Hanna Reitz <hreitz@redhat.com 
> <mailto:hreitz@redhat.com>> wrote:
>
>     On 16.09.21 06:09, John Snow wrote:
>     > This one is insidious: if you use the invocation
>     > "from {namespace} import {subpackage}" as mirror-top-perms does,
>     > mypy will fail on every-other invocation *if* the package being
>     > imported is a package.
>     >
>     > Now, I could just edit mirror-top-perms to avoid this
>     invocation, but
>     > since I tripped on a landmine, I might as well head it off at
>     the pass
>     > and make sure nobody else trips on the same landmine.
>     >
>     > It seems to have something to do with the order in which files are
>     > checked as well, meaning the random order in which set(os.listdir())
>     > produces the list of files to test will cause problems
>     intermittently.
>     >
>     > mypy >= 0.920 isn't released yet, so add this workaround for now.
>     >
>     > See also:
>     > https://github.com/python/mypy/issues/11010
>     <https://github.com/python/mypy/issues/11010>
>     > https://github.com/python/mypy/issues/9852
>     <https://github.com/python/mypy/issues/9852>
>     >
>     > Signed-off-by: John Snow <jsnow@redhat.com
>     <mailto:jsnow@redhat.com>>
>     > ---
>     >   tests/qemu-iotests/linters.py | 3 +++
>     >   1 file changed, 3 insertions(+)
>     >
>     > diff --git a/tests/qemu-iotests/linters.py
>     b/tests/qemu-iotests/linters.py
>     > index 4df062a973..9c97324e87 100755
>     > --- a/tests/qemu-iotests/linters.py
>     > +++ b/tests/qemu-iotests/linters.py
>     > @@ -100,6 +100,9 @@ def run_linters(
>     >                   '--warn-unused-ignores',
>     >                   '--no-implicit-reexport',
>     >                   '--namespace-packages',
>     > +                # Until we can use mypy >= 0.920, see
>     > +                # https://github.com/python/mypy/
>     <https://github.com/python/mypy/issues/9852>issues
>     <https://github.com/python/mypy/issues/9852>/9852
>     <https://github.com/python/mypy/issues/9852>
>     > +                '--no-incremental',
>     >                   filename,
>     >               ),
>
>     I’m afraid I still don’t really understand this, but I’m happy
>     with this
>     given as the reported workaround and you saying it works.
>
>     Reviewed-by: Hanna Reitz <hreitz@redhat.com
>     <mailto:hreitz@redhat.com>>
>
>     Question is, when “can we use” mypy >= 0.920?  Should we check the
>     version string and append this switch as required?
>
>
> The answer to that question depends on how the block maintainers feel 
> about what environments they expect this test to be runnable under. I 
> lightly teased kwolf once about an "ancient" version of pylint they 
> were running, but felt kind of bad about it in retrospect: the tests I 
> write should "just work" for everyone without them needing to really 
> know anything about python or setting up or managing their 
> dependencies, environments, etc.
>
> (1) We can use it the very moment it is released if you're OK with 
> running 'make check-dev' from the python/ directory. That script sets 
> up its own virtual environment and manages its own dependencies. If I 
> set a new minimum version, it will always use it. (Same story for 
> 'make check-tox', or 'make check-pipenv'. The differences between the 
> tests are primarily on what other dependencies they have on your 
> environment -- the details are boring, see python/Makefile for further 
> reading if desired.)
>
> (2) Otherwise, it depends on how people feel about being able to run 
> this test directly from iotests and what versions of mypy/pylint they 
> are using. Fedora 33 for instance has 0.782-2.fc33 still, so I can't 
> really "expect" people to have a bleeding-edge version of mypy unless 
> they went out of their way to install one themselves. (pip3 install 
> --user --upgrade mypy, by the way.) Since people are used to running 
> these python scripts *outside* of a managed environment (using their 
> OS packages directly), I have largely made every effort to support 
> versions as old as I reasonably can -- to avoid disruption whenever I 
> possibly can.
>
> So, basically, it kind of depends on if you want to keep 297 or not. 
> Keeping it implies some additional cost for the sake of maximizing 
> compatibility. If we ditch it, you can let the scripts in ./python do 
> their thing and set up their own environments to run tests that should 
> probably "just work" for everyone.297 could even just be updated to a 
> bash script that just hopped over to ./python and ran a special 
> avocado command that ran /only/ the iotest linters, if you wanted. I 
> just felt that step #1 was to change as little as possible, prove the 
> new approach worked, and then when folks were comfortable with it drop 
> the old approach.

Hm.  So the gist is, since we apparently want to keep 297, we have to 
wait for some indefinite time until in some years or so someone 
remembers this workaround and removes it?

Doesn’t sound quite ideal, but well...

Hanna



  parent reply	other threads:[~2021-10-04  9:04 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-16  4:09 [PATCH v3 00/16] python/iotests: Run iotest linters during Python CI John Snow
2021-09-16  4:09 ` [PATCH v3 01/16] python: Update for pylint 2.10 John Snow
2021-09-16 13:28   ` Alex Bennée
2021-09-16 14:34     ` John Snow
2021-09-16  4:09 ` [PATCH v3 02/16] iotests/mirror-top-perms: Adjust imports John Snow
2021-09-16  4:27   ` Philippe Mathieu-Daudé
2021-09-16 14:27     ` John Snow
2021-09-16 15:05       ` Philippe Mathieu-Daudé
2021-09-17  8:35   ` Hanna Reitz
2021-09-16  4:09 ` [PATCH v3 03/16] iotests/migrate-bitmaps-postcopy-test: declare instance variables John Snow
2021-09-17  8:37   ` Hanna Reitz
2021-09-22 19:15     ` John Snow
2021-09-16  4:09 ` [PATCH v3 04/16] iotests/migrate-bitmaps-test: delint John Snow
2021-09-16  4:28   ` Philippe Mathieu-Daudé
2021-09-17  8:59   ` Hanna Reitz
2021-09-16  4:09 ` [PATCH v3 05/16] iotests/297: modify is_python_file to work from any CWD John Snow
2021-09-17  9:08   ` Hanna Reitz
2021-09-16  4:09 ` [PATCH v3 06/16] iotests/297: Add get_files() function John Snow
2021-09-17  9:24   ` Hanna Reitz
2021-09-22 19:25     ` John Snow
2021-09-16  4:09 ` [PATCH v3 07/16] iotests/297: Don't rely on distro-specific linter binaries John Snow
2021-09-17  9:43   ` Hanna Reitz
2021-09-22 19:53     ` John Snow
2021-10-04  8:16       ` Hanna Reitz
2021-10-04 18:59         ` John Snow
2021-09-16  4:09 ` [PATCH v3 08/16] iotests/297: Create main() function John Snow
2021-09-16  4:31   ` Philippe Mathieu-Daudé
2021-09-17  9:58   ` Hanna Reitz
2021-09-16  4:09 ` [PATCH v3 09/16] iotests/297: Separate environment setup from test execution John Snow
2021-09-17 10:05   ` Hanna Reitz
2021-09-16  4:09 ` [PATCH v3 10/16] iotests/297: Add 'directory' argument to run_linters John Snow
2021-09-17 10:10   ` Hanna Reitz
2021-09-16  4:09 ` [PATCH v3 11/16] iotests/297: return error code from run_linters() John Snow
2021-09-17 11:00   ` Hanna Reitz
2021-09-22 20:18     ` John Snow
2021-10-04  7:45       ` Hanna Reitz
2021-10-04 19:26         ` John Snow
2021-09-16  4:09 ` [PATCH v3 12/16] iotests/297: split linters.py off from 297 John Snow
2021-09-16  4:09 ` [PATCH v3 13/16] iotests/linters: Add entry point for Python CI linters John Snow
2021-09-16  4:52   ` Philippe Mathieu-Daudé
2021-09-16  4:09 ` [PATCH v3 14/16] iotests/linters: Add workaround for mypy bug #9852 John Snow
2021-09-17 11:16   ` Hanna Reitz
2021-09-22 20:37     ` John Snow
2021-09-22 20:38       ` John Snow
2021-10-04  8:35         ` Hanna Reitz
2021-10-04  8:31       ` Hanna Reitz [this message]
2021-09-16  4:09 ` [PATCH v3 15/16] python: Add iotest linters to test suite John Snow
2021-09-16  4:09 ` [PATCH v3 16/16] iotests/linters: check mypy files all at once John Snow
2021-09-17 11:23   ` Hanna Reitz
2021-09-22 20:41     ` John Snow
2021-09-17  5:46 ` [PATCH v3 00/16] python/iotests: Run iotest linters during Python CI John Snow

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=096c3dd6-192f-dd84-65e6-44d7bbd05a23@redhat.com \
    --to=hreitz@redhat.com \
    --cc=armbru@redhat.com \
    --cc=crosa@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=jsnow@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=vsementsov@virtuozzo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.