File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414# KIND, either express or implied. See the License for the
1515# specific language governing permissions and limitations
1616# under the License.
17+ .PHONY : help install install-uv check-license lint \
18+ test test-integration test-integration-setup test-integration-exec test-integration-cleanup test-integration-rebuild \
19+ test-s3 test-adls test-gcs test-coverage coverage-report \
20+ docs-serve docs-build notebook notebook-infra \
21+ clean uv-lock uv-lock-check
22+
23+ .DEFAULT_GOAL := help
1724# ========================
1825# Configuration Variables
1926# ========================
@@ -183,6 +190,8 @@ clean: ## Remove build artifacts and caches
183190 @find . -name " *.pyo" -exec echo Deleting {} \; -delete
184191 @echo " Cleaning up Jupyter notebook checkpoints..."
185192 @find . -name " .ipynb_checkpoints" -exec echo Deleting {} \; -exec rm -rf {} +
193+ @echo " Cleaning up coverage files..."
194+ @rm -rf .coverage .coverage.* htmlcov/ coverage.xml
186195 @echo " Cleanup complete."
187196
188197uv-lock : # # Regenerate uv.lock file from pyproject.toml
You can’t perform that action at this time.
0 commit comments