personal memory agent
0
fork

Configure Feed

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

Suppress third-party deprecation warnings in pytest

Add filterwarnings to pyproject.toml to ignore known deprecation
warnings from frontmatter, google.genai, and desktop_notifier on
Python 3.14+. Reduces test warnings from 795 to 2 residual
import-time warnings that can't be filtered.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+6
+6
pyproject.toml
··· 144 144 markers = [ 145 145 "integration: marks tests as integration tests (deselect with '-m \"not integration\"')", 146 146 ] 147 + filterwarnings = [ 148 + # Third-party deprecation warnings (Python 3.14+) 149 + "ignore:codecs.open.* is deprecated:DeprecationWarning", 150 + "ignore:.*_UnionGenericAlias.* is deprecated:DeprecationWarning", 151 + "ignore:.*DefaultEventLoopPolicy.* is deprecated:DeprecationWarning", 152 + ]