1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
ROOTDIR = $(shell pwd)
# Check for the presence of bun or npm
ifneq ($(shell which bun),)
FE_CMD=bun
else ifneq ($(shell which npm),)
FE_CMD=npm
else
echo "No frontend build tool found. Please install 'bun' or 'npm'."
exit 1
endif
# This nifty perl one-liner collects all comments headed by the double "#" symbols next to each target and recycles them as comments
.PHONY: help
help: ## Print this help message
@perl -nle'print $& if m{^[/a-zA-Z_-]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-25s\033[0m %s\n", $$1, $$2}'
.PHONY: clean
clean: ## Delete some cruft from builds/testing/etc.
rm -f `find . -type f -name '*.py[co]'`
rm -rf `find . -name __pycache__ -o -name "*.egg-info"` \
`find . -name 'output-*'` \
.coverage build dist \
doc/_build doc/api doc/tutorial \
.pytest_cache \
.ruff_cache
.PHONY: test
test: ## Run pytest and doc tests
pytest -v
python check_examples.py --chisq
python check_fitters.py
#######################
### Dev environment ###
#######################
.PHONY: dev-backend
dev-backend: ## Start the backend server in headless mode
bumps-webview --port 8080 --headless
.PHONY: dev-frontend
dev-frontend: ## Start the frontend server in development mode
cd bumps/webview/client && \
$(FE_CMD) run dev
##############################
### Linting and formatting ###
##############################
.PHONY: lint
lint: lint-backend lint-frontend ## Run all linters
.PHONY: lint-backend-check
lint-backend-check: ## Run ruff linting on python code
@ruff check bumps/ run.py test.py check_*.py
.PHONY: lint-backend
lint-backend: ## Run ruff linting fix on python code
@ruff check --fix bumps/ run.py test.py check_*.py
.PHONY: lint-frontend-check
lint-frontend-check: ## Run bun linting check on javascript code
cd bumps/webview/client && \
$(FE_CMD) run test:lint
.PHONY: lint-frontend
lint-frontend: ## Run bun linting fix on javascript code
cd bumps/webview/client && \
$(FE_CMD) run lint
.PHONY: format
format: format-backend format-frontend ## Run all formatters
.PHONY: format-backend
format-backend: ## Run ruff formatting on python code
@ruff format bumps/ run.py test.py check_*.py
.PHONY: format-frontend
format-frontend: ## Run bun formatting on javascript code
cd bumps/webview/client && \
$(FE_CMD) run format
|