support/testing: really fix python-gitdb2 test
authorYann E. MORIN <yann.morin.1998@free.fr>
Sat, 4 Jan 2020 08:29:36 +0000 (09:29 +0100)
committerYann E. MORIN <yann.morin.1998@free.fr>
Sat, 4 Jan 2020 08:29:36 +0000 (09:29 +0100)
The 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.

Commit d8c86be9cd7 (support/testing: fix python-gitdb2 test) tried to
address this issue, by explicitly squelching the two errors, F401 and
F403.

While that works on recent distros, the image used by our docker
pipeline is laggign behind and the flake8 there only handles at most a
single error in the noqa list.

Do as is done with the other python samples, and just blindly ignore
all errors.

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

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