tools: Dropped python-modulefinder and disassembly.

- Modulefinder often has errors.
- Both tools aren't commonly used.
This commit is contained in:
Andrew Hamilton 2021-11-28 22:56:41 +10:00
parent 8f4b783e1e
commit 75a028272d
3 changed files with 3 additions and 17 deletions

View file

@ -3,8 +3,7 @@
tools_for_extensions = [
[["py"], ["python_syntax", "python_unittests", "pytest", "pydoc", "mypy",
"python_coverage", "pycodestyle", "pydocstyle", "pyflakes",
"pylint", "python_gut", "python_modulefinder", "dis",
"python_mccabe", "bandit"]],
"pylint", "python_gut", "python_mccabe", "bandit"]],
# [["pyc"], ["pydisasm"]],
[["pl", "pm", "t"], ["perl_syntax", "perldoc"]],
[["p6", "pm6"], ["perl6_syntax"]],
@ -78,11 +77,6 @@ tools_for_extensions = [
command = "python3.9 -m pylint -f colorized --errors-only"
has_color = true
[python_modulefinder]
dependencies = []
url = "https://docs.python.org/3/library/modulefinder.html"
command = "python3.9 -m modulefinder"
[bandit]
dependencies = ["python3-bandit"]
url = "https://pypi.org/project/bandit/"
@ -121,11 +115,6 @@ tools_for_extensions = [
error_status = "not_applicable"
has_color = true
[dis]
dependencies = []
url = "https://docs.python.org/3/library/dis.html"
command = "python3.9 -m dis"
[objdump_headers]
dependencies = ["binutils"]
url = "https://en.wikipedia.org/wiki/Objdump"

View file

@ -103,9 +103,6 @@ class ToolsTestCase(unittest.TestCase):
def test_python_gut(self):
self._test_tool(tools.python_gut, self.HI_OK)
def test_python_modulefinder(self):
self._test_tool(tools.python_modulefinder, self.HI_OK)
def test_python_mccabe(self):
self._test_tool(tools.python_mccabe, self.HI_OK)