personal memory agent
0

Configure Feed

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

solstone / tests / _awareness_harness.py
370 B 14 lines
1# SPDX-License-Identifier: AGPL-3.0-only 2# Copyright (c) 2026 sol pbc 3 4from flask import Flask 5from flask.testing import FlaskClient 6 7from solstone.apps.awareness.routes import awareness_bp 8 9 10def make_awareness_test_client() -> FlaskClient: 11 app = Flask(__name__) 12 app.config["TESTING"] = True 13 app.register_blueprint(awareness_bp) 14 return app.test_client()