This commit is contained in:
geekan 2024-01-15 16:54:03 +08:00
parent 4feea49b22
commit ab55303fa1
4 changed files with 3 additions and 2 deletions

View file

@ -48,7 +48,6 @@ def test_context_1():
assert ctx.git_repo is None
assert ctx.src_workspace is None
assert ctx.cost_manager is not None
assert ctx.options is not None
def test_context_2():

View file

@ -95,7 +95,7 @@ def test_config_mixin_4_multi_inheritance_override_config():
print(obj.__dict__.keys())
assert "private_config" in obj.__dict__.keys()
assert obj.llm.model == "mock_zhipu_model"
assert obj.config.llm.model == "mock_zhipu_model"
@pytest.mark.asyncio