summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2018-05-29 14:35:32 -0700
committerJeff Forcier <jeff@bitprophet.org>2018-05-29 14:36:26 -0700
commit0bf3fa458deffe1306f226a7257ceda927ca9e8e (patch)
treef0ebaa4b1b1517fdb492cc257bb577efe98433e7 /tasks.py
parent7f2c35052183b400827d9949a68b41c90f90a32d (diff)
downloadparamiko-0bf3fa458deffe1306f226a7257ceda927ca9e8e.tar.gz
Modernize travis/dev-reqs/etc re: blackening
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 6cf20377..d4cd414b 100644
--- a/tasks.py
+++ b/tasks.py
@@ -3,6 +3,8 @@ from os.path import join
from shutil import rmtree, copytree
from invoke import Collection, task
+from invocations import travis
+from invocations.checks import blacken
from invocations.docs import docs, www, sites
from invocations.packaging.release import ns as release_coll, publish
from invocations.testing import count_errors
@@ -121,7 +123,16 @@ def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False, index=None):
release_coll.tasks["publish"] = release
ns = Collection(
- test, coverage, guard, release_coll, docs, www, sites, count_errors
+ test,
+ coverage,
+ guard,
+ release_coll,
+ docs,
+ www,
+ sites,
+ count_errors,
+ travis,
+ blacken,
)
ns.configure(
{