personal memory agent
at main 17 lines 402 B view raw
1# SPDX-License-Identifier: AGPL-3.0-only 2# Copyright (c) 2026 sol pbc 3 4"""Fixtures for transcripts app tests.""" 5 6import os 7 8import pytest 9 10 11@pytest.fixture(autouse=True) 12def _journal_env(monkeypatch): 13 """Point _SOLSTONE_JOURNAL_OVERRIDE at the test fixtures.""" 14 monkeypatch.setenv( 15 "_SOLSTONE_JOURNAL_OVERRIDE", 16 os.path.join(os.getcwd(), "tests", "fixtures", "journal"), 17 )