mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-25 17:10:38 +00:00
12 lines
169 B
Python
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
|