summaryrefslogtreecommitdiffhomepage
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-09-13 08:48:04 -0700
committerJeff Forcier <jeff@bitprophet.org>2017-09-13 08:48:04 -0700
commit2b3967e2f641bb265fd6a4570e8b5a7875159bc9 (patch)
treee2233ad33d7db1339fc0a146ff2d9525736dab04 /tasks.py
parentad5c0d17fffd6b365a5477d2b884d3207879d8b8 (diff)
parentb27b82c0ba10001d9f67eb7365e1bdc16a19e048 (diff)
Merge branch 'master' into 1063-int
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 42c18bd0..a34fd3ce 100644
--- a/tasks.py
+++ b/tasks.py
@@ -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