diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-09-05 18:19:07 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-09-05 18:19:07 -0700 |
commit | 85c24776774458ea9782272552570966fd3a4c45 (patch) | |
tree | 6abd8de2aea9d6011f1c78699f7fb002e3ce683d /tasks.py | |
parent | c4041f37db59ee71dfa77a2f34cd5ff65e00a6b6 (diff) | |
parent | 5fed4c1f4b67b7337de4c9a01bd8e3c23e6a529f (diff) |
Merge branch 'master' into 1026-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 |