From 6e1c32f22cf663e83c6c2100bc9518490822f21f Mon Sep 17 00:00:00 2001 From: user Date: Tue, 24 Feb 2026 16:57:00 +0100 Subject: [PATCH] fix: add pythonpath to pytest config for CI plugin imports The patch("plugins._musicbrainz...") calls in tests need plugins/ on sys.path. Works locally from repo root but fails in CI containers. Co-Authored-By: Claude Opus 4.6 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 974ecf9..e8c2732 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ where = ["src"] [tool.pytest.ini_options] testpaths = ["tests"] +pythonpath = ["."] [tool.ruff] line-length = 99