Files
scale-gke-qdrant-llama/Makefile
Benito Martin 4f8c435d62 first deploy
2024-06-30 00:32:19 +02:00

22 lines
382 B
Makefile

# Makefile
.PHONY: req lint clean
# Variables
PIP := pip
RUFF := ruff
all: req lint test clean ## Run all tasks
req: ## Install the requirements
$(PIP) install -r requirements.txt
lint: ## Run linter and code formatter (ruff)
$(RUFF) check . --fix
test: ## Run tests using pytest
pytest tests/
clean: ## Clean up generated files
rm -rf __pycache__