Skip to content

Commit 208dc5e

Browse files
fix: suppress PyparsingDeprecationWarning from matplotlib in tests
These warnings originate from matplotlib's internal pyparsing usage (_fontconfig_pattern.py, _mathtext.py), not from datajoint code. Filter them in pytest config to reduce noise. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a1d9f28 commit 208dc5e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,9 @@ markers = [
233233
"postgresql: marks tests that run on PostgreSQL backend (select with '-m postgresql')",
234234
"backend_agnostic: marks tests that should pass on all backends (auto-marked for parameterized tests)",
235235
]
236+
filterwarnings = [
237+
"ignore::pyparsing.exceptions.PyparsingDeprecationWarning",
238+
]
236239

237240

238241
[tool.pixi.workspace]

0 commit comments

Comments
 (0)