Skip to content

Commit bfd9293

Browse files
committed
debug dns_failures_logging
1 parent eca38b7 commit bfd9293

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

test/asynchronous/utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,9 @@ 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+
)
196199
passes = 0
197200
for i in range(max_runs):
198201
try:

test/utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@ 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+
)
194197
passes = 0
195198
for i in range(max_runs):
196199
try:

0 commit comments

Comments
 (0)