[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 02/25] iotests/297: add --namespace-packages to mypy arguments
From: |
John Snow |
Subject: |
[PATCH v5 02/25] iotests/297: add --namespace-packages to mypy arguments |
Date: |
Thu, 18 Feb 2021 14:27:10 -0500 |
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>
---
tests/qemu-iotests/297 | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/qemu-iotests/297 b/tests/qemu-iotests/297
index a37910b42d9..433b7323368 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,
--
2.29.2
- [PATCH v5 00/25] python: create installable package, John Snow, 2021/02/18
- [PATCH v5 01/25] python/console_socket: avoid one-letter variable, John Snow, 2021/02/18
- [PATCH v5 02/25] iotests/297: add --namespace-packages to mypy arguments,
John Snow <=
- [PATCH v5 03/25] python: create qemu packages, John Snow, 2021/02/18
- [PATCH v5 04/25] python: create utils sub-package, John Snow, 2021/02/18
- [PATCH v5 05/25] python: add qemu package installer, John Snow, 2021/02/18
- [PATCH v5 06/25] python: add VERSION file, John Snow, 2021/02/18
- [PATCH v5 07/25] python: add directory structure README.rst files, John Snow, 2021/02/18
- [PATCH v5 10/25] python: move pylintrc into setup.cfg, John Snow, 2021/02/18
- [PATCH v5 09/25] python: add pylint import exceptions, John Snow, 2021/02/18
- [PATCH v5 11/25] python: add pylint to pipenv, John Snow, 2021/02/18
- [PATCH v5 14/25] python: Add flake8 to pipenv, John Snow, 2021/02/18
- [PATCH v5 13/25] python: add excluded dirs to flake8 config, John Snow, 2021/02/18