personal memory agent
0

Configure Feed

Select the types of activity you want to include in your feed.

solstone / tests / test_talent_dir_clean.py
307 B 9 lines
1# SPDX-License-Identifier: AGPL-3.0-only 2# Copyright (c) 2026 sol pbc 3 4 5def test_no_stray_test_talent_files(): 6 from solstone.think.talent import TALENT_DIR 7 8 stray = sorted(p.name for p in TALENT_DIR.glob("test_*.md")) 9 assert stray == [], f"Stray test talent file(s) under {TALENT_DIR}: {stray}"