Initial commit
Add spruce scraper with CLI, session management, parsers, progress tracking, recheck logic, and test suite. Includes example config and README.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
"""Shared pytest fixtures."""
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
import pytest
|
||||
|
||||
FIXTURES = Path(__file__).parent / "fixtures"
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def scan_list_html() -> str:
|
||||
return (FIXTURES / "scan_list.html").read_text(encoding="utf-8")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def scan_view_html() -> str:
|
||||
return (FIXTURES / "scan_view.html").read_text(encoding="utf-8")
|
||||
Reference in New Issue
Block a user