summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-04-12 19:07:28 -0400
committerJeff Forcier <jeff@bitprophet.org>2023-04-12 19:07:28 -0400
commitb77ef44a049c3b99e770a360e7b1312ca6940ce4 (patch)
treeb9b6b430489ca501634ad485fbc57ff2623e0374
parentee2829903f0108b6ea6da59cf29bff9c3cff3a74 (diff)
parent3a62cd73b01b6e4fa3003eb5d2c808ce54035185 (diff)
downloadparamiko-b77ef44a049c3b99e770a360e7b1312ca6940ce4.tar.gz
Merge branch '3.0' into 3.1HEADmain3.1
-rw-r--r--.circleci/config.yml2
-rw-r--r--dev-requirements.txt1
-rw-r--r--tasks.py7
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
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