qulab-infinite / agent_lab /tests /test_smoke.py
workofarttattoo's picture
πŸš€ QuLab MCP Server: Complete Experiment Taxonomy Deployment
91994bf
raw
history blame contribute delete
408 Bytes
import importlib.util
from pathlib import Path
LAB_PACKAGE = "agent_lab"
def test_agent_lab_package_stub_exists():
spec = importlib.util.find_spec(LAB_PACKAGE)
assert spec is not None, f"Package agent_lab not discoverable"
def test_agent_lab_readme_present():
lab_root = Path(__file__).resolve().parents[1]
readme = lab_root / "README.md"
assert readme.exists(), "README.md missing"