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
|
PYTHON = python3
RUFF ?= $(PYTHON) -m ruff
SETUP = $(PYTHON) setup.py
TESTRUNNER ?= unittest
RUNTEST = PYTHONHASHSEED=random PYTHONPATH=$(shell pwd)$(if $(PYTHONPATH),:$(PYTHONPATH),) $(PYTHON) -m $(TESTRUNNER) $(TEST_OPTIONS)
COVERAGE = python3-coverage
PYDOCTOR_ARGS ?=
DESTDIR=/
all: build
doc:: sphinx
sphinx::
$(MAKE) -C docs html
build::
$(SETUP) build
$(SETUP) build_ext -i
install::
$(SETUP) install --root="$(DESTDIR)"
check:: build
$(RUNTEST) tests.test_suite
check-tutorial:: build
$(RUNTEST) tests.tutorial_test_suite
check-nocompat:: build
$(RUNTEST) tests.nocompat_test_suite
check-compat:: build
$(RUNTEST) tests.compat_test_suite
check-pypy:: clean
$(MAKE) check-noextensions PYTHON=pypy
check-noextensions:: clean
$(RUNTEST) tests.test_suite
check-contrib:: clean
$(RUNTEST) -v dulwich.contrib.test_suite
typing:
$(PYTHON) -m mypy dulwich
clean::
$(SETUP) clean --all
rm -f dulwich/*.so
style:
$(RUFF) check .
coverage:
$(COVERAGE) run -m unittest tests.test_suite dulwich.contrib.test_suite
coverage-html: coverage
$(COVERAGE) html
.PHONY: apidocs
apidocs:
$(PYTHON) -m pydoctor $(PYDOCTOR_ARGS) --intersphinx https://www.dulwich.io/api/objects.inv --intersphinx http://docs.python.org/3/objects.inv --docformat=google dulwich --project-url=https://www.dulwich.io/ --project-name=dulwich
fix:
ruff check --fix .
reformat:
ruff format .
.PHONY: codespell
codespell:
codespell --config .codespellrc .
|