summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/tasks.py b/tasks.py
index 9d2903c8..c14abacb 100644
--- a/tasks.py
+++ b/tasks.py
@@ -74,15 +74,12 @@ def test(
@task
-def coverage(ctx, opts="", codecov=False):
+def coverage(ctx, opts=""):
"""
Execute all tests (normal and slow) with coverage enabled.
"""
test(ctx, coverage=True, include_slow=True, opts=opts)
- # Cribbed from invocations.pytest.coverage for now
- if codecov:
- ctx.run("coverage xml")
- ctx.run("codecov")
+ # NOTE: codecov now handled purely in invocations/orb
@task