remove verbose in pytorch_ci hypothesis profile (#26075)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/26075
att, remove verbose argument to reduce noice in the logs
Test Plan:
ci
Imported from OSS
Differential Revision: D17335935
fbshipit-source-id: 2e4289e838bf4489dcad8d5533353eebcff0d481
diff --git a/test/common_utils.py b/test/common_utils.py
index e3daa66..d4b2f71 100644
--- a/test/common_utils.py
+++ b/test/common_utils.py
@@ -471,8 +471,7 @@
derandomize=True,
suppress_health_check=[hypothesis.HealthCheck.too_slow],
database=None,
- max_examples=100,
- verbosity=hypothesis.Verbosity.verbose))
+ max_examples=100))
hypothesis.settings.register_profile(
"dev",
hypothesis.settings(
@@ -495,8 +494,7 @@
suppress_health_check=[hypothesis.HealthCheck.too_slow],
database=None,
max_examples=100,
- min_satisfying_examples=1,
- verbosity=hypothesis.Verbosity.verbose))
+ min_satisfying_examples=1))
hypothesis.settings.register_profile(
"dev",
hypothesis.settings(
@@ -1138,7 +1136,7 @@
def solve_test_helper(A_dims, b_dims, cast):
b = cast(torch.randn(*b_dims))
A = cast(random_fullrank_matrix_distinct_singular_value(*A_dims))
- return b, A
+ return b, A
def brute_pdist(inp, p=2):