in order to see whether pytest runs. It in fact does: `uv run pytest` Signed-off-by: Max R. Carrara <max@aequito.sh>
6 lines
73 B
Python
6 lines
73 B
Python
def foo(x):
|
|
return x + 1
|
|
|
|
|
|
def test_answer():
|
|
assert foo(3) == 4
|