edf74f4e18
Build and Deploy Sphinx Docs / deploy (push) Has been skipped
tests / tests (ubuntu-latest, 3.11, 4.57.1) (push) Failing after 1s
tests / tests (ubuntu-latest, 3.13, ) (push) Failing after 1s
docker / build (cuda) (push) Failing after 1s
docker / build (npu-a3) (push) Failing after 1s
tests / tests (ubuntu-latest, 3.11, ) (push) Failing after 1s
docker / build (npu-a2) (push) Failing after 1s
Build and Deploy Sphinx Docs / build (push) Failing after 1s
tests / tests (ubuntu-latest, 3.11, 4.55.0) (push) Failing after 0s
tests / tests (ubuntu-latest, 3.12, ) (push) Failing after 1s
tests / tests (windows-latest, 3.11, ) (push) Has been cancelled
tests / tests (windows-latest, 3.12, ) (push) Has been cancelled
tests / tests (macos-latest, 3.11, ) (push) Has been cancelled
tests / tests (macos-latest, 3.12, ) (push) Has been cancelled
tests / tests (macos-latest, 3.13, ) (push) Has been cancelled
tests / tests (windows-latest, 3.13, ) (push) Has been cancelled
tests_cuda / tests (linux-x86_64-gpu-2, 3.11) (push) Has been cancelled
tests_npu / tests (linux-aarch64-a2-4, 3.11, 2.7.1) (push) Has been cancelled
29 lines
741 B
Makefile
29 lines
741 B
Makefile
.PHONY: build commit license quality style test
|
|
|
|
check_dirs := scripts src tests tests_v1
|
|
|
|
RUN := $(shell command -v uv >/dev/null 2>&1 && echo "uv run" || echo "")
|
|
BUILD := $(shell command -v uv >/dev/null 2>&1 && echo "uv build" || echo "python -m build")
|
|
TOOL := $(shell command -v uv >/dev/null 2>&1 && echo "uvx" || echo "")
|
|
|
|
build:
|
|
$(BUILD)
|
|
|
|
commit:
|
|
$(TOOL) pre-commit install
|
|
$(TOOL) pre-commit run --all-files
|
|
|
|
license:
|
|
$(RUN) python3 tests/check_license.py $(check_dirs)
|
|
|
|
quality:
|
|
$(TOOL) ruff check $(check_dirs)
|
|
$(TOOL) ruff format --check $(check_dirs)
|
|
|
|
style:
|
|
$(TOOL) ruff check $(check_dirs) --fix
|
|
$(TOOL) ruff format $(check_dirs)
|
|
|
|
test:
|
|
WANDB_DISABLED=true $(RUN) pytest -vv --import-mode=importlib tests/ tests_v1/
|