Coverage for cyclonedx_lint/cli.py: 0.00%

7 statements  

« prev     ^ index     » next       coverage.py v7.4.1, created at 2024-02-04 17:23:42 +00:00

1"""Visit folder tree with CycloneDX documents, validate the latter, and generate reports.""" 

2 

3import sys 

4from typing import no_type_check 

5 

6import cyclonedx_lint.lint as cyclonedx_lint 

7 

8 

9@no_type_check 

10def main(argv=None): 

11 """Process the job.""" 

12 argv = sys.argv[1:] if argv is None else argv 

13 cyclonedx_lint.parse(argv)