Spaces:
No application file
No application file
| 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" | |