File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -109,23 +109,25 @@ def floats(*args, **kwargs):
109
109
max_examples = 50 ,
110
110
min_satisfying_examples = 1 ,
111
111
verbosity = hypothesis .Verbosity .verbose ,
112
- deadline = 1000 ))
112
+ deadline = 10000 ))
113
113
hypothesis .settings .register_profile (
114
114
"dev" ,
115
115
settings (
116
116
suppress_health_check = [hypothesis .HealthCheck .too_slow ],
117
117
database = None ,
118
118
max_examples = 10 ,
119
119
min_satisfying_examples = 1 ,
120
- verbosity = hypothesis .Verbosity .verbose ))
120
+ verbosity = hypothesis .Verbosity .verbose ,
121
+ deadline = 10000 ))
121
122
hypothesis .settings .register_profile (
122
123
"debug" ,
123
124
settings (
124
125
suppress_health_check = [hypothesis .HealthCheck .too_slow ],
125
126
database = None ,
126
127
max_examples = 1000 ,
127
128
min_satisfying_examples = 1 ,
128
- verbosity = hypothesis .Verbosity .verbose ))
129
+ verbosity = hypothesis .Verbosity .verbose ,
130
+ deadline = 50000 ))
129
131
130
132
hypothesis .settings .load_profile (
131
133
'sandcastle' if is_sandcastle () else os .getenv ('CAFFE2_HYPOTHESIS_PROFILE' ,
You can’t perform that action at this time.
0 commit comments