diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-09-05 14:31:12 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-09-05 14:31:12 -0700 |
commit | 73fcc4959437014a09a831dbd6badae4aede4db8 (patch) | |
tree | ca14c1809b3a4e699c3bfd51a87bea6ce1a2529e /tasks.py | |
parent | 5a363f62e9ec35bae36fc84002b39e8482a59f34 (diff) | |
parent | 5fb4bb2cfc415b287f629a398de5447da18a3fb2 (diff) |
Merge branch 'master' into 1037-int
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ from shutil import rmtree, copytree from invoke import Collection, task from invocations.docs import docs, www, sites from invocations.packaging.release import ns as release_coll, publish +from invocations.testing import count_errors # Until we move to spec-based testing @@ -49,7 +50,7 @@ def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False): # aliasing, defaults etc. release_coll.tasks['publish'] = release -ns = Collection(test, coverage, release_coll, docs, www, sites) +ns = Collection(test, coverage, release_coll, docs, www, sites, count_errors) ns.configure({ 'packaging': { # NOTE: many of these are also set in kwarg defaults above; but having |