MCPcopy Create free account
hub / github.com/ScrapeGraphAI/Scrapegraph-ai / temp_csv_file

Function temp_csv_file

tests/conftest.py:299–303  ·  view source on GitHub ↗

Create a temporary CSV file for testing.

(tmp_path, sample_csv)

Source from the content-addressed store, hash-verified

297
298@pytest.fixture
299def temp_csv_file(tmp_path, sample_csv):
300 """Create a temporary CSV file for testing."""
301 csv_file = tmp_path / "test_data.csv"
302 csv_file.write_text(sample_csv)
303 return str(csv_file)
304
305
306# ============================================================================

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected