Run ``lake build`` in the managed project.
(self)
| 128 | return inst |
| 129 | |
| 130 | def build(self) -> None: |
| 131 | """Run ``lake build`` in the managed project.""" |
| 132 | run_command(["lake", "build"], cwd=str(self._dir)) |
| 133 | |
| 134 | def library(self) -> LeanLibrary: |
| 135 | """Build and return a :class:`LeanLibrary` for this project.""" |
nothing calls this directly
no test coverage detected