pytest skip test command line code example
Example: pytest skip
import pytest
@pytest.mark.skip
def test_greater_equal():
num = 100
assert num >= 100
import pytest
@pytest.mark.skip
def test_greater_equal():
num = 100
assert num >= 100