From 0bf3fa458deffe1306f226a7257ceda927ca9e8e Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Tue, 29 May 2018 14:35:32 -0700 Subject: Modernize travis/dev-reqs/etc re: blackening --- tasks.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'tasks.py') 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( { -- cgit v1.2.1