mirror of
https://github.com/xr843/Master-skill.git
synced 2026-05-10 13:26:25 +00:00
25aea07f6a
Matches internal architecture (create-master, master_xuanzang, etc.) and accurately reflects content (historical Chinese Buddhist masters, not the Buddha himself). Changes: - 32 text references across 9 files updated - Sanskrit terms (buddha-dhātu, buddhatā) preserved in dictionary context - GitHub repo renamed (preserves stars/forks/history, auto-redirects) - Internal naming already uses master_* (unchanged) All 79 tests pass.
10 lines
242 B
Python
10 lines
242 B
Python
"""Shared pytest fixtures for Master-skill tests."""
|
|
|
|
import sys
|
|
import os
|
|
from pathlib import Path
|
|
|
|
# Add tools/ to path so tests can import modules
|
|
PROJECT_ROOT = Path(__file__).parent.parent
|
|
sys.path.insert(0, str(PROJECT_ROOT / "tools"))
|