From 3a62cd73b01b6e4fa3003eb5d2c808ce54035185 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Wed, 12 Apr 2023 18:57:20 -0400 Subject: Use newer circleci orb to stop using codecov's old pypi package Closes #2226 --- tasks.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'tasks.py') 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 -- cgit v1.2.1