Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
from types import SimpleNamespace
from unittest.mock import patch
from hermes_cli.config import recommended_update_command
from hermes_cli.main import cmd_update
from tools.skills_hub import OptionalSkillSource
def test_recommended_update_command_defaults_to_hermes_update(monkeypatch):
monkeypatch.delenv("HERMES_MANAGED", raising=False)
# Also short-circuit the .managed marker path — CI runners may have an
# ambient ~/.hermes/.managed if a prior test left HERMES_HOME pointing
# somewhere with that marker, which would make get_managed_update_command()
# return "Update your Nix flake input ..." instead of falling through to
# detect_install_method().
with patch("hermes_cli.config.get_managed_update_command", return_value=None), \
patch("hermes_cli.config.detect_install_method", return_value="git"):
assert recommended_update_command() == "hermes update"
def test_optional_skill_source_honors_env_override(monkeypatch, tmp_path):
optional_dir = tmp_path / "optional-skills"
optional_dir.mkdir()
monkeypatch.setenv("HERMES_OPTIONAL_SKILLS", str(optional_dir))
source = OptionalSkillSource()
assert source._optional_dir == optional_dir