Files
neon/test_runner/regress/test_flaky.py
2025-05-14 11:31:45 +03:00

12 lines
169 B
Python

"""Test for detecting new flaky tests"""
import random
def test_flaky1():
assert random.random() > 0.05
def no_test_flaky2():
assert random.random() > 0.05