summaryrefslogtreecommitdiffhomepage
path: root/tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index e2bb0331..97dca66b 100644
--- a/tasks.py
+++ b/tasks.py
@@ -9,7 +9,7 @@ from invocations.packaging.release import ns as release_coll, publish
@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: