chore(tests): exclude sideband_plugins fixtures from package distribution

This commit is contained in:
Ivan 2026-07-09 10:48:34 -05:00
parent 78535f2098
commit 28168fe295
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

@ -91,6 +91,7 @@ exclude = [
"venv",
".venv",
"tests/frontend",
"tests/backend/fixtures/sideband_plugins",
"vendor",
"*.egg-info",
]

View file

@ -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,
)