Remove irrelevant code as per gemini cr

This commit is contained in:
Nitzan Pomerantz
2025-10-30 20:25:14 +02:00
parent bdfc5e3d3e
commit 67a17b022d
2 changed files with 0 additions and 21 deletions
-15
View File
@@ -77,18 +77,3 @@ def vcr_cassette(request):
cassette_name = f"{request.module.__name__}.{test_name}"
return my_vcr.use_cassette(cassette_name)
@pytest.fixture
def vcr_enabled():
"""
Fixture that enables VCR for the entire test function.
Usage:
@pytest.mark.usefixtures('vcr_enabled')
def test_something():
# All HTTP calls automatically recorded/replayed
response = requests.get("...")
"""
# This is handled by pytest-vcr plugin or manual context manager
pass