diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-04-12 19:07:28 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-04-12 19:07:28 -0400 |
commit | b77ef44a049c3b99e770a360e7b1312ca6940ce4 (patch) | |
tree | b9b6b430489ca501634ad485fbc57ff2623e0374 /tasks.py | |
parent | ee2829903f0108b6ea6da59cf29bff9c3cff3a74 (diff) | |
parent | 3a62cd73b01b6e4fa3003eb5d2c808ce54035185 (diff) |
Merge branch '3.0' into 3.1
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -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 |