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 | |
parent | ee2829903f0108b6ea6da59cf29bff9c3cff3a74 (diff) | |
parent | 3a62cd73b01b6e4fa3003eb5d2c808ce54035185 (diff) |
Merge branch '3.0' into 3.1
-rw-r--r-- | .circleci/config.yml | 2 | ||||
-rw-r--r-- | dev-requirements.txt | 1 | ||||
-rw-r--r-- | tasks.py | 7 |
3 files changed, 3 insertions, 7 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index f18b6ff9..7214201c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 orbs: - orb: invocations/orb@1.3.0 + orb: invocations/orb@1.3.1 jobs: diff --git a/dev-requirements.txt b/dev-requirements.txt index 646a4c5f..26d0efa4 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -13,7 +13,6 @@ black>=22.8,<22.9 codespell>=2.2,<2.3 # Coverage! coverage>=6.2,<7 -codecov==2.1.12 # Documentation tools alabaster==0.7.13 releases>=2.1 @@ -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 |