mirror of https://github.com/kianby/stacosys
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
818 B
Makefile
38 lines
818 B
Makefile
ifeq (run,$(firstword $(MAKECMDGOALS)))
|
|
# use the rest as arguments for "run"
|
|
RUN_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
|
|
# ...and turn them into do-nothing targets
|
|
$(eval $(RUN_ARGS):;@:)
|
|
endif
|
|
|
|
.PHONY: all build run test
|
|
|
|
# code quality
|
|
all: black typehint lint
|
|
|
|
black:
|
|
rye run isort --multi-line 3 --profile black src/ tests/
|
|
rye run black --target-version py311 src/ tests/
|
|
|
|
typehint:
|
|
rye run mypy --ignore-missing-imports src/ tests/
|
|
|
|
lint:
|
|
rye run pylint src/
|
|
|
|
# check
|
|
check: all
|
|
|
|
# test
|
|
test:
|
|
rye run coverage run -m --source=stacosys pytest tests
|
|
rye run coverage report
|
|
|
|
# build
|
|
#rye run pyinstaller src/stacosys/run.py --name stacosys --onefile
|
|
build:
|
|
rye run pyinstaller --clean stacosys.spec
|
|
|
|
# run
|
|
run:
|
|
PYTHONPATH=src/ rye run python src/stacosys/run.py $(RUN_ARGS)
|