summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Snow2021-05-27 23:16:52 +0200
committerJohn Snow2021-06-01 22:21:21 +0200
commit7f0a143b0cd7b2b7c05b55b1b6814747ef612ce3 (patch)
treedd35315a4d0f6438a30cc4f487dde87155c850c4
parentpython/machine: Trim line length to below 80 chars (diff)
downloadqemu-7f0a143b0cd7b2b7c05b55b1b6814747ef612ce3.tar.gz
qemu-7f0a143b0cd7b2b7c05b55b1b6814747ef612ce3.tar.xz
qemu-7f0a143b0cd7b2b7c05b55b1b6814747ef612ce3.zip
iotests/297: add --namespace-packages to mypy arguments
mypy is kind of weird about how it handles imports. For legacy reasons, it won't load PEP 420 namespaces, because of logic implemented prior to that becoming a standard. So, if you plan on using any, you have to pass --namespace-packages. Alright, fine. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Cleber Rosa <crosa@redhat.com> Message-id: 20210527211715.394144-9-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
-rwxr-xr-xtests/qemu-iotests/2971
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/qemu-iotests/297 b/tests/qemu-iotests/297
index a37910b42d..433b732336 100755
--- a/tests/qemu-iotests/297
+++ b/tests/qemu-iotests/297
@@ -95,6 +95,7 @@ def run_linters():
'--warn-redundant-casts',
'--warn-unused-ignores',
'--no-implicit-reexport',
+ '--namespace-packages',
filename),
env=env,
check=False,