File size: 603 Bytes
f5498f9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | """Shared fixtures and helpers for the consistency suite."""
import json
import sys
from pathlib import Path
import pytest
REPO = Path(__file__).resolve().parents[1]
sys.path.insert(0, str(REPO))
def load(rel: str) -> dict:
"""Parse a repo-relative JSON file."""
return json.loads((REPO / rel).read_text(encoding='utf-8'))
@pytest.fixture(scope='session')
def repo() -> Path:
return REPO
@pytest.fixture(scope='session')
def classifier() -> dict:
return load('classifier.json')
@pytest.fixture(scope='session')
def tight() -> dict:
return load('classifier_tight_fpr.json')
|