From 28168fe29514df0aa28b7dbf34f539116dbc895b Mon Sep 17 00:00:00 2001 From: Ivan Date: Thu, 9 Jul 2026 10:48:34 -0500 Subject: [PATCH] chore(tests): exclude sideband_plugins fixtures from package distribution --- pyproject.toml | 1 + scripts/sign-plugin.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 936d1469..140ca57d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -91,6 +91,7 @@ exclude = [ "venv", ".venv", "tests/frontend", + "tests/backend/fixtures/sideband_plugins", "vendor", "*.egg-info", ] diff --git a/scripts/sign-plugin.py b/scripts/sign-plugin.py index 604993e9..3d612f5c 100644 --- a/scripts/sign-plugin.py +++ b/scripts/sign-plugin.py @@ -13,7 +13,7 @@ _ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) if _ROOT not in sys.path: sys.path.insert(0, _ROOT) -from meshchatx.src.backend.plugin_signature import ( +from meshchatx.src.backend.plugin_signature import ( # noqa: E402 SignatureInfo, canonical_dir_payload, verify_dir_signature, @@ -21,7 +21,7 @@ from meshchatx.src.backend.plugin_signature import ( verify_zip_signature, write_dir_signature, ) -from meshchatx.src.backend.plugin_wasm_bundle import ( +from meshchatx.src.backend.plugin_wasm_bundle import ( # noqa: E402 append_wasm_signature, wasm_payload_without_signature, )