We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eca38b7 commit bfd9293Copy full SHA for bfd9293
test/asynchronous/utils.py
@@ -193,6 +193,9 @@ def flaky(
193
def decorator(target_func):
194
@wraps(target_func)
195
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
+ )
199
passes = 0
200
for i in range(max_runs):
201
try:
test/utils.py
@@ -191,6 +191,9 @@ def flaky(
191
192
def wrapper(*args, **kwargs):
0 commit comments