support/testing: fix python-gitdb2 test
authorYann E. MORIN <yann.morin.1998@free.fr>
Wed, 18 Dec 2019 20:12:22 +0000 (21:12 +0100)
committerYann E. MORIN <yann.morin.1998@free.fr>
Wed, 18 Dec 2019 20:12:22 +0000 (21:12 +0100)
Cthe test-case for python-gitdb2 consists solely in verifying that the
module can indeed be imported.

However, flake8 errors out on unused imports. Furthermore, it also
errors about wildcard imports, as it can detect unused symbols.

Squelch those errors.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
support/testing/tests/package/sample_python_gitdb2.py

index 3742eed2d8c5e443a76af24c9b8accc2907ba30a..493dcaaee2c0c15feb93822e384d57f7c97e7d56 100644 (file)
@@ -1 +1 @@
-from gitdb import *
+from gitdb import *  # NOQA: F401 F403