测试Python UT
continuous-integration/drone/push Build is passing Details

main
lzwang 2022-09-03 14:47:48 +08:00
parent 451c50150d
commit 32feace311
1 changed files with 1 additions and 1 deletions

View File

@ -5,5 +5,5 @@ from loguru import logger as log
def test_random_number():
a = random.randint(1, 10)
b = random.randint(1, 10)
log.debug(f'Random number: a={a}, b={b}')
log.warning(f'Random number: a={a}, b={b}')
assert a > b, f"Whoops! a <= b"