diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2018-05-29 14:35:32 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-09-17 15:32:38 -0700 |
commit | 174daa3b95411ed6c72cfbc9f8d320d7b45a440e (patch) | |
tree | 8e74aff94de615a691876251822a972600a9f11c /tasks.py | |
parent | 78b3520e9b78b0cefab37ba96bef00af6b996c4b (diff) |
Modernize travis/dev-reqs/etc re: blackening
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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 @@ -120,7 +122,15 @@ 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, + test, + coverage, + guard, + release_coll, + docs, + www, + sites, + travis, + blacken, ) ns.configure( { |