-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #168 from melexis/urls
Merge #164 to master
- Loading branch information
Showing
28 changed files
with
1,790 additions
and
1,337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
""" Melexis fork of warnings plugin """ | ||
|
||
__all__ = [ | ||
'CoverityChecker', | ||
'DoxyChecker', | ||
'Finding', | ||
'JUnitChecker', | ||
'PolyspaceChecker', | ||
'PolyspaceFamilyChecker', | ||
'RobotChecker', | ||
'RobotSuiteChecker', | ||
'SphinxChecker', | ||
'WarningsChecker', | ||
'WarningsPlugin', | ||
'XMLRunnerChecker', | ||
'__version__', | ||
'warnings_wrapper', | ||
'WarningsConfigError', | ||
"CoverityChecker", | ||
"DoxyChecker", | ||
"Finding", | ||
"JUnitChecker", | ||
"PolyspaceChecker", | ||
"PolyspaceFamilyChecker", | ||
"RobotChecker", | ||
"RobotSuiteChecker", | ||
"SphinxChecker", | ||
"WarningsChecker", | ||
"WarningsPlugin", | ||
"XMLRunnerChecker", | ||
"__version__", | ||
"warnings_wrapper", | ||
"WarningsConfigError", | ||
] | ||
|
||
|
||
from .__version__ import __version__ | ||
from .code_quality import Finding | ||
from .exceptions import WarningsConfigError | ||
from .junit_checker import JUnitChecker | ||
from .polyspace_checker import PolyspaceChecker, PolyspaceFamilyChecker | ||
from .regex_checker import CoverityChecker, DoxyChecker, SphinxChecker, XMLRunnerChecker | ||
from .robot_checker import RobotChecker, RobotSuiteChecker | ||
from .polyspace_checker import PolyspaceChecker, PolyspaceFamilyChecker | ||
from .warnings import WarningsPlugin, warnings_wrapper | ||
from .warnings_checker import WarningsChecker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
""" | ||
Python module for running the warnings plugin | ||
""" | ||
from mlx.warnings.warnings import main | ||
|
||
|
||
if __name__ == '__main__': | ||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.