redis-om-python/Makefile

88 lines
2.6 KiB
Makefile
Raw Normal View History

2021-11-10 00:59:10 +01:00
NAME := aredis_om
SYNC_NAME := redis_om
INSTALL_STAMP := .install.stamp
POETRY := $(shell command -v poetry 2> /dev/null)
2021-11-12 16:29:17 +01:00
REDIS_OM_URL ?= "redis://localhost:6380?decode_responses=True"
.DEFAULT_GOAL := help
.PHONY: help
help:
@echo "Please use 'make <target>' where <target> is one of"
@echo ""
@echo " install install packages and prepare environment"
@echo " clean remove all temporary files"
@echo " lint run the code linters"
@echo " format reformat code"
@echo " test run all the tests"
@echo " shell open a Poetry shell"
@echo " redis start a Redis instance with Docker"
@echo ""
@echo "Check the Makefile to know exactly what each target is doing."
install: $(INSTALL_STAMP)
2021-11-10 00:59:10 +01:00
$(INSTALL_STAMP): pyproject.toml
@if [ -z $(POETRY) ]; then echo "Poetry could not be found. See https://python-poetry.org/docs/"; exit 2; fi
$(POETRY) install
touch $(INSTALL_STAMP)
.PHONY: clean
clean:
find . -type d -name "__pycache__" | xargs rm -rf {};
rm -rf $(INSTALL_STAMP) .coverage .mypy_cache
2021-11-10 00:59:10 +01:00
rm -rf build
rm -rf dist
rm -rf redis_om
docker-compose down
2021-11-10 00:59:10 +01:00
2021-10-22 15:53:39 +02:00
.PHONY: dist
2021-11-10 00:59:10 +01:00
dist: $(INSTALL_STAMP) clean sync
2021-10-22 15:53:39 +02:00
$(POETRY) build
2021-11-10 00:59:10 +01:00
.PHONY: sync
sync: $(INSTALL_STAMP)
$(POETRY) run python make_sync.py
2021-11-02 22:40:08 +01:00
.PHONY: upload
upload: dist
$(POETRY) run twine upload dist/*
.PHONY: lint
2021-10-22 15:53:39 +02:00
lint: $(INSTALL_STAMP) dist
2021-11-10 00:59:10 +01:00
$(POETRY) run isort --profile=black --lines-after-imports=2 ./tests/ $(NAME) $(SYNC_NAME)
$(POETRY) run black ./tests/ $(NAME)
2021-11-10 00:59:10 +01:00
$(POETRY) run flake8 --ignore=W503,E501,F401,E731 ./tests/ $(NAME) $(SYNC_NAME)
$(POETRY) run mypy ./tests/ $(NAME) $(SYNC_NAME) --ignore-missing-imports
$(POETRY) run bandit -r $(NAME) $(SYNC_NAME) -s B608
2021-10-22 15:53:39 +02:00
$(POETRY) run twine check dist/*
.PHONY: format
2021-11-12 16:56:47 +01:00
format: $(INSTALL_STAMP) sync
2021-11-10 00:59:10 +01:00
$(POETRY) run isort --profile=black --lines-after-imports=2 ./tests/ $(NAME) $(SYNC_NAME)
$(POETRY) run black ./tests/ $(NAME) $(SYNC_NAME)
.PHONY: test
2021-11-12 16:56:47 +01:00
test: $(INSTALL_STAMP) sync redis
2021-11-12 16:29:17 +01:00
REDIS_OM_URL="$(REDIS_OM_URL)" $(POETRY) run pytest -n auto -vv ./tests/ ./tests_sync/ --cov-report term-missing --cov $(NAME) $(SYNC_NAME)
docker-compose down
.PHONY: test_oss
2021-11-12 16:29:17 +01:00
test_oss: $(INSTALL_STAMP) sync redis
# Specifically tests against a local OSS Redis instance via
# docker-compose.yml. Do not use this for CI testing, where we should
# instead have a matrix of Docker images.
2021-11-11 01:43:31 +01:00
REDIS_OM_URL="redis://localhost:6381?decode_responses=True" $(POETRY) run pytest -n auto -vv ./tests/ ./tests_sync/ --cov-report term-missing --cov $(NAME)
.PHONY: shell
shell: $(INSTALL_STAMP)
$(POETRY) shell
.PHONY: redis
redis:
docker-compose up -d
.PHONY: all
2021-10-21 02:13:42 +02:00
all: redis $(INSTALL_STAMP) lint test