π₯To Begin With
Installation and setup requirements
Installation
Example

Last updated
Installation and setup requirements

Last updated
# content of test_sample.py
def inc(x):
return x + 1
def test_answer():
assert inc(3) == 5
def test_simple():
assert inc(3) == 4