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
|
.PHONY: all venv lint jsonschemasuitcases test test-lf benchmark benchmark-save performance printcode doc build upload deb clean
SHELL=/bin/bash
VENV_NAME?=venv
VENV_BIN=$(shell pwd)/${VENV_NAME}/bin
PYTHON=${VENV_BIN}/python3
all:
@echo "make test - Run tests during development"
@echo "make performance - Run performance test of this and other implementation"
@echo "make doc - Make documentation"
@echo "make clean - Get rid of scratch and byte files"
venv: $(VENV_NAME)/bin/activate
$(VENV_NAME)/bin/activate: setup.py
test -d $(VENV_NAME) || virtualenv -p python3 $(VENV_NAME)
${PYTHON} -m pip install -U pip setuptools twine build
${PYTHON} -m pip install -e .[devel]
touch $(VENV_NAME)/bin/activate
lint: venv
${PYTHON} -m pylint fastjsonschema
jsonschemasuitcases:
git submodule init
git submodule update
test: venv jsonschemasuitcases
${PYTHON} -m pytest -W default --benchmark-skip #tests/json_schema/test_draft07.py
test-lf: venv jsonschemasuitcases
${PYTHON} -m pytest -W default --benchmark-skip --last-failed
# Call make benchmark-save before change and then make benchmark to compare results.
benchmark: venv jsonschemasuitcases
${PYTHON} -m pytest \
-W default \
--benchmark-only \
--benchmark-sort=name \
--benchmark-group-by=fullfunc \
--benchmark-disable-gc \
--benchmark-compare \
--benchmark-compare-fail='min:5%'
benchmark-save: venv jsonschemasuitcases
${PYTHON} -m pytest \
-W default \
--benchmark-only \
--benchmark-sort=name \
--benchmark-group-by=fullfunc \
--benchmark-disable-gc \
--benchmark-save=benchmark \
--benchmark-save-data
performance: venv
${PYTHON} performance.py
printcode: venv
cat schema.json | python3 -m fastjsonschema
doc:
cd docs; make
build: venv
${PYTHON} -m build
upload: venv build
${PYTHON} -m twine upload --repository pypi dist/*
deb: venv
${PYTHON} setup.py --command-packages=stdeb.command bdist_deb
clean:
find . -name '*.pyc' -exec rm --force {} +
rm -rf $(VENV_NAME) *.eggs *.egg-info dist build docs/_build .mypy_cache .cache
|