pip install pytest coverage code example
Example 1: pytest skip
import pytest
@pytest.mark.skip
def test_greater_equal():
num = 100
assert num >= 100
Example 2: python run pytest
Just type this in shell:
pytest
Or this if that does nott work:
python -m pytest