Skip to content
Open
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
4 changes: 4 additions & 0 deletions test-client.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,9 @@ def recv():
default='')
parser.add_argument('--auth-header',
help='authorization header, i.e. "Bearer ..."')
parser.add_argument('--time-regex',
help='regex for matching timestamps',
default=_TIME_REGEX)
parser.add_argument('--skip-actions-events',
help='skip action and event tests',
action='store_true')
Expand Down Expand Up @@ -594,5 +597,6 @@ def recv():
_PROTO = args.protocol
_PATH_PREFIX = args.path_prefix
_AUTHORIZATION_HEADER = args.auth_header
_TIME_REGEX = args.time_regex

exit(run_client())