8 lines
173 B
Python
8 lines
173 B
Python
"""Shared test fixtures for webscraper."""
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
# Add src to path for imports
|
|
sys.path.insert(0, str(Path(__file__).parent.parent / "src"))
|