Skip 테스트를 말 그대로 skip 할 경우 사용import pytest@pytest.fixture(scope="function")def scope_fixture(): return {"scope": "function"}def test_scope(scope_fixture): assert scope_fixture["scope"] == "function"def test_function_scope_2(scope_fixture): assert scope_fixture["scope"] == "function"@pytest.mark.skip(reason="Skip Testing")def test_skip(): assert 1 == 1 다음===============================..