From 66ad0e68a6d9e9affe593c5e8eaec38dead32568 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Mon, 21 Nov 2022 11:16:39 +0100 Subject: [PATCH] scripts: compliance: Use consistent naming convention Tests are named with CamelCase in general, use that in the names. Signed-off-by: Carles Cufi --- .gitignore | 4 ++-- scripts/ci/check_compliance.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index b8121c11784..b97c01e6a4f 100644 --- a/.gitignore +++ b/.gitignore @@ -66,11 +66,11 @@ tags # from check_compliance.py Gitlint.txt -checkpatch.txt +Checkpatch.txt Kconfig.txt KconfigBasic.txt Codeowners.txt Nits.txt -pylint.txt +Pylint.txt Identity.txt DevicetreeBindings.txt diff --git a/scripts/ci/check_compliance.py b/scripts/ci/check_compliance.py index f45c2031f4d..4da36ac223c 100755 --- a/scripts/ci/check_compliance.py +++ b/scripts/ci/check_compliance.py @@ -185,7 +185,7 @@ class CheckPatch(ComplianceTest): Runs checkpatch and reports found issues """ - name = "checkpatch" + name = "Checkpatch" doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#coding-style for more details." path_hint = "" @@ -938,7 +938,7 @@ class PyLint(ComplianceTest): Runs pylint on all .py files, with a limited set of checks enabled. The configuration is in the pylintrc file. """ - name = "pylint" + name = "Pylint" doc = "See https://www.pylint.org/ for more details" path_hint = ""