Skip to content
Merged
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
2 changes: 1 addition & 1 deletion checkers/jsonlint_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class CIChecker(CICheckerCommon):
def __init__(self, api_init =None , args =None, check_api_type =None ,static_check = StaticCheck):
self.check_name = "jsonlint check"
super().__init__(api_init, args, check_api_type, self.check_name,static_check)
self.local_ci_check = False
self.local_ci_check = True
self.command_output = dict()
self._jsonlint_file_filter()

Expand Down
1 change: 1 addition & 0 deletions checkers/requirements_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class CIChecker(CICheckerCommon):

def __init__(self, api_init =None, args = None , check_api_type = None , static_check = StaticCheck):
self.check_name = "requirements check"
self.local_ci_check = True
super().__init__(api_init, args, check_api_type, self.check_name,static_check)

def get_check_files(self):
Expand Down
2 changes: 1 addition & 1 deletion checkers/ruff_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class CIChecker(CICheckerCommon):
def __init__(self, api_init =None, args = None , check_api_type = None , static_check = StaticCheck):
self.check_name = "ruff check"
super().__init__(api_init, args, check_api_type, self.check_name,static_check)
self.local_ci_check = False
self.local_ci_check = True
self.command_output = {}
self.local_workspace_check = True

Expand Down