File tree Expand file tree Collapse file tree 4 files changed +2
-8
lines changed Expand file tree Collapse file tree 4 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ def response_callback(*args):
225225
226226 await self .run_scenario (response_callback , False )
227227
228- @flaky (reason = "PYTHON-5500" )
228+ @flaky (reason = "PYTHON-5500" , max_runs = 3 )
229229 async def test_dns_failures_logging (self ):
230230 from dns import exception
231231
Original file line number Diff line number Diff line change @@ -193,9 +193,6 @@ def flaky(
193193 def decorator (target_func ):
194194 @wraps (target_func )
195195 async def wrapper (* args , ** kwargs ):
196- print (
197- f"Hello from flaky { max_runs = } { min_passes = } { disable_flaky = } { is_cpython_linux = } { affects_cpython_linux = } "
198- )
199196 passes = 0
200197 for i in range (max_runs ):
201198 try :
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ def response_callback(*args):
225225
226226 self .run_scenario (response_callback , False )
227227
228- @flaky (reason = "PYTHON-5500" )
228+ @flaky (reason = "PYTHON-5500" , max_runs = 3 )
229229 def test_dns_failures_logging (self ):
230230 from dns import exception
231231
Original file line number Diff line number Diff line change @@ -191,9 +191,6 @@ def flaky(
191191 def decorator (target_func ):
192192 @wraps (target_func )
193193 def wrapper (* args , ** kwargs ):
194- print (
195- f"Hello from flaky { max_runs = } { min_passes = } { disable_flaky = } { is_cpython_linux = } { affects_cpython_linux = } "
196- )
197194 passes = 0
198195 for i in range (max_runs ):
199196 try :
You can’t perform that action at this time.
0 commit comments