chore(conductor): Mark track 'MMA Core Engine Implementation' as complete and verify with Phase 6 tests
This commit is contained in:
@@ -24,26 +24,26 @@ from gui_2 import App
|
||||
@pytest.fixture
|
||||
def mock_config(tmp_path):
|
||||
config_path = tmp_path / "config.toml"
|
||||
config_path.write_text("[projects]
|
||||
config_path.write_text("""[projects]
|
||||
paths = []
|
||||
active = ""
|
||||
[ai]
|
||||
provider = "gemini"
|
||||
model = "model"
|
||||
", encoding="utf-8")
|
||||
""", encoding="utf-8")
|
||||
return config_path
|
||||
|
||||
@pytest.fixture
|
||||
def mock_project(tmp_path):
|
||||
project_path = tmp_path / "project.toml"
|
||||
project_path.write_text("[project]
|
||||
project_path.write_text("""[project]
|
||||
name = "test"
|
||||
[discussion]
|
||||
roles = ["User", "AI"]
|
||||
active = "main"
|
||||
[discussion.discussions.main]
|
||||
history = []
|
||||
", encoding="utf-8")
|
||||
""", encoding="utf-8")
|
||||
return project_path
|
||||
|
||||
def test_log_management_init(mock_config, mock_project, monkeypatch):
|
||||
|
||||
Reference in New Issue
Block a user