Commit b2848bd2 by James Cammarata

Merge pull request #12389 from amenonsen/minus-t

Set PlayContext.timeout from the value specified by -T on the command-line
parents d91ff0db 85bb508f
......@@ -241,6 +241,8 @@ class PlayContext(Base):
self.start_at_task = to_unicode(options.start_at_task)
if hasattr(options, 'diff') and options.diff:
self.diff = boolean(options.diff)
if hasattr(options, 'timeout') and options.timeout:
self.timeout = int(options.timeout)
# get the tag info from options, converting a comma-separated list
# of values into a proper list if need be. We check to see if the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment