added serial mode

This commit is contained in:
2020-10-01 12:25:50 +02:00
parent b311d6cd36
commit 9fb47e67a4
3 changed files with 7 additions and 4 deletions

View File

@ -17,6 +17,7 @@ def handle_clargs():
parser_check.add_argument("filename", help="name of input channel-list file")
parser_check.add_argument("-o", "--output", help="output CSV file", default=None)
parser_check.add_argument("-q", "--quiet", help="do not show each channel's answer", action="store_true")
parser_check.add_argument("-s", "--serial", help="do not run checks in parallel", action="store_true")
parser_check.add_argument("-t", "--timeout", help="connection timeout in seconds", type=float, default=1)
parser_compare = subparsers.add_parser("compare", help="compare two check results")