From 462581ff3e4e17a07948c9926f1362e1f7675e4c Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Thu, 5 Mar 2020 19:32:31 -0500
Subject: [PATCH] Drop the verbosity back down to a comfortable level

That is, dumping any extra information from Hypothesis clutters up the test
runner output too much to leave this on in general. :(
---
 src/_zkapauthorizer/tests/__init__.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/_zkapauthorizer/tests/__init__.py b/src/_zkapauthorizer/tests/__init__.py
index 1c5d4a1..0f9529a 100644
--- a/src/_zkapauthorizer/tests/__init__.py
+++ b/src/_zkapauthorizer/tests/__init__.py
@@ -25,7 +25,6 @@ def _configure_hypothesis():
 
     from hypothesis import (
         HealthCheck,
-        Verbosity,
         settings,
     )
 
@@ -52,7 +51,6 @@ def _configure_hypothesis():
         # Make CI runs a little more aggressive in amount of coverage they try
         # to provide.
         max_examples=200,
-        verbosity=Verbosity.debug,
         **base
     )
 
-- 
GitLab