diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-10-25 11:24:20 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-10-25 11:24:20 -0700 |
commit | 4f85487b02bd7fc845f1c0726b9ec2a7703d7631 (patch) | |
tree | 9098d49e5aebc057488aeddc274520f6956af4a5 /tasks.py | |
parent | 5bf4a0f80c45bddf9941c33ec22ed1765d70c6b9 (diff) | |
download | paramiko-4f85487b02bd7fc845f1c0726b9ec2a7703d7631.tar.gz |
Tighten up verbose flag
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ from invocations.testing import count_errors @task def test(ctx, verbose=True, coverage=False, opts=""): - if verbose: + if verbose and '--verbose' not in opts and '-v' not in opts: opts += " --verbose" runner = "pytest" if coverage: |