personal memory agent
0
fork

Configure Feed

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

fix: preserve symlinks in validate_key test fixture copy

The settings_client fixture was missing symlinks=True, causing
shutil.copytree to fail on the journal fixture's health log symlinks.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+1 -1
+1 -1
tests/test_validate_key.py
··· 22 22 def settings_client(tmp_path, monkeypatch): 23 23 src = Path(__file__).resolve().parent / "fixtures" / "journal" 24 24 journal = tmp_path / "journal" 25 - shutil.copytree(src, journal) 25 + shutil.copytree(src, journal, symlinks=True) 26 26 monkeypatch.setenv("_SOLSTONE_JOURNAL_OVERRIDE", str(journal)) 27 27 28 28 app = create_app(str(journal))