python run pytest

C++
pip install pytestJust type this in shell:
pytest

Or this if that does nott work:
python -m pytest# content of test_sample.py
def inc(x):
    return x + 1


def test_answer():
    assert inc(3) == 5

Source

Also in C++: