File size: 1,154 Bytes
065fee7 |
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 |
PYXS = $(wildcard yarl/*.pyx)
SRC = yarl tests
all: test
.install-deps: $(shell find requirements -type f)
pip install -U -r requirements/dev.txt
pre-commit install
@touch .install-deps
.install-cython: requirements/cython.txt
pip install -r requirements/cython.txt
touch .install-cython
yarl/%.c: yarl/%.pyx
python -m cython -3 -o $@ $< -I yarl
.cythonize: .install-cython $(PYXS:.pyx=.c)
cythonize: .cythonize
.develop: .install-deps $(shell find yarl -type f)
@pip install -e .
@touch .develop
fmt:
ifdef CI
pre-commit run --all-files --show-diff-on-failure
else
pre-commit run --all-files
endif
lint: fmt
test: lint .develop
pytest ./tests ./yarl
vtest: lint .develop
pytest ./tests ./yarl -v
cov: lint .develop
pytest --cov yarl --cov-report html --cov-report term ./tests/ ./yarl/
@echo "open file://`pwd`/htmlcov/index.html"
doc: doctest doc-spelling
make -C docs html SPHINXOPTS="-W -E --keep-going -n"
@echo "open file://`pwd`/docs/_build/html/index.html"
doctest: .develop
make -C docs doctest SPHINXOPTS="-W -E --keep-going -n"
doc-spelling:
make -C docs spelling SPHINXOPTS="-W -E --keep-going -n"
|