b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
Build Skills Index / trigger-deploy (push) Waiting to run
CI / Deny unrelated histories (push) Has been skipped
CI / CI timing report (push) Blocked by required conditions
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / All required checks pass (push) Waiting to run
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
"""Test that setup.py has shutil available for Matrix E2EE auto-install."""
|
|
import ast
|
|
|
|
|
|
|
|
def _parse_setup_imports():
|
|
"""Parse setup.py and return top-level import names."""
|
|
with open("hermes_cli/setup.py") as f:
|
|
tree = ast.parse(f.read())
|
|
names = set()
|
|
for node in ast.walk(tree):
|
|
if isinstance(node, ast.Import):
|
|
for alias in node.names:
|
|
names.add(alias.name)
|
|
elif isinstance(node, ast.ImportFrom):
|
|
for alias in node.names:
|
|
names.add(alias.name)
|
|
return names
|
|
|
|
|
|
class TestSetupShutilImport:
|
|
def test_shutil_imported_at_module_level(self):
|
|
"""shutil must be imported at module level so setup_gateway can use it
|
|
for the mautrix auto-install path."""
|
|
names = _parse_setup_imports()
|
|
assert "shutil" in names, (
|
|
"shutil is not imported at the top of hermes_cli/setup.py. "
|
|
"This causes a NameError when the Matrix E2EE auto-install "
|
|
"tries to call shutil.which('uv')."
|
|
)
|