docs: #19 工具链上下文四层改造方案 #4

Closed
pangtong-fujunshi wants to merge 39 commits from docs/19-toolchain-context-layers-only into main
2 changed files with 5 additions and 1 deletions
Showing only changes of commit ec2bd9b3ec - Show all commits
+1 -1
View File
@@ -11,7 +11,7 @@ markers = [
"integration: integration tests (requires RUN_INTEGRATION=1)",
"e2e: end-to-end tests with real daemon + Agent (requires RUN_INTEGRATION=1)",
]
addopts = "-m 'not integration and not e2e'"
addopts = "-m not integration and not e2e"
[tool.pyright]
venvPath = "."
+4
View File
@@ -21,6 +21,10 @@ def pytest_configure(config):
for name, desc in markers.items():
config.addinivalue_line("markers", f"{name}: {desc}")
# When RUN_INTEGRATION=1, remove default marker filter so integration/e2e tests run
if os.environ.get("RUN_INTEGRATION"):
config.known_args_namespace.markexpr = ""
@pytest.fixture
def isolated_data_root(tmp_path):