You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser=argparse.ArgumentParser(description="Parse the report file")
162
170
parser.add_argument("report_file", type=str, help="a name of the report file")
163
-
parser.add_argument("-t", "--timestamp", type=str, help="a timestamp of the run. When passed, will cause combine results of multiple runs when the runs have the same timestamp.", default=datetime.now(), required=False)
164
-
parser.add_argument("-c", "--category", type=str, help="a category label to add to the issue.", required=False)
171
+
parser.add_argument("-c", "--category", type=str, help="category of the Snyk run. When defined, reported issues will be scoped within the category i.e., will not be closed by scans running on other categories. Also added as label to created issues.", required=False)
172
+
parser.add_argument("-t", "--timestamp", type=str, help="a timestamp of the run (added as label to ceated issues)", default=datetime.now(), required=False)
0 commit comments