Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions platformio/check/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from platformio import exception
from platformio.check.tools.clangtidy import ClangtidyCheckTool
from platformio.check.tools.cppcheck import CppcheckCheckTool
from platformio.check.tools.pvsstudio import PvsStudioCheckTool


class CheckToolFactory:
Expand All @@ -26,8 +25,6 @@ def new(tool, project_dir, config, envname, options):
cls = CppcheckCheckTool
elif tool == "clangtidy":
cls = ClangtidyCheckTool
elif tool == "pvs-studio":
cls = PvsStudioCheckTool
else:
raise exception.PlatformioException("Unknown check tool `%s`" % tool)
return cls(project_dir, config, envname, options)
251 changes: 0 additions & 251 deletions platformio/check/tools/pvsstudio.py

This file was deleted.

3 changes: 1 addition & 2 deletions platformio/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ def get_core_dependencies():
"contrib-pioremote": "~1.0.0",
"tool-scons": "~4.40801.0",
"tool-cppcheck": "~1.21100.0",
"tool-clangtidy": "~1.150005.0",
"tool-pvs-studio": "~7.18.0",
"tool-clangtidy": "~1.150005.0"
}


Expand Down
2 changes: 1 addition & 1 deletion platformio/project/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ def get_default_core_dir():
group="check",
name="check_tool",
description="A list of check tools used for analysis",
type=click.Choice(["cppcheck", "clangtidy", "pvs-studio"]),
type=click.Choice(["cppcheck", "clangtidy"]),
multiple=True,
default=["cppcheck"],
),
Expand Down
Loading