File: Makefile

package info (click to toggle)
python-django-zeal 2.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 284 kB
  • sloc: python: 1,387; makefile: 25; sh: 9
file content (30 lines) | stat: -rw-r--r-- 520 bytes parent folder | download
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
install-hooks:
	git config core.hooksPath hooks/

install:
	$(MAKE) install-hooks
	uv pip compile requirements-dev.in -o requirements-dev.txt && uv pip sync requirements-dev.txt

ci:
	pip install -r requirements-dev.txt

test:
	pytest -s --tb=native --random-order -m "not benchmark" $(ARGS)

benchmark:
	pytest -s $(ARGS) --codspeed

format-check:
	ruff format --check && ruff check

format:
	ruff format && ruff check --fix

typecheck:
	pyright .

build:
	python -m build --installer uv

publish:
	twine upload dist/*