python pytes code example
Example 1: python run pytest
Just type this in shell:
pytest
Or this if that does nott work:
python -m pytest
Example 2: pytest
# content of test_sample.py
def inc(x):
return x + 1
def test_answer():
assert inc(3) == 5