Update the help text in Makefile text to include all options

Fixes #80
This commit is contained in:
Serhii Charykov 2022-05-02 23:14:23 +03:00
parent 00ed537fca
commit 43dc51535c

View file

@ -14,9 +14,14 @@ help:
@echo " clean remove all temporary files" @echo " clean remove all temporary files"
@echo " lint run the code linters" @echo " lint run the code linters"
@echo " format reformat code" @echo " format reformat code"
@echo " test run all the tests" @echo " test run all the tests against redislabs/redisearch:edge"
@echo " test_oss run all the tests against redis:latest"
@echo " shell open a Poetry shell" @echo " shell open a Poetry shell"
@echo " redis start a Redis instance with Docker" @echo " redis start a Redis instance with Docker"
@echo " sync generate modules redis_om, tests_sync from aredis_om, tests respectively"
@echo " dist build a redis-om package"
@echo " upload upload a redis-om package to PyPI"
@echo " all equivalent to \"make lint format test\""
@echo "" @echo ""
@echo "Check the Makefile to know exactly what each target is doing." @echo "Check the Makefile to know exactly what each target is doing."
@ -84,4 +89,4 @@ redis:
docker-compose up -d docker-compose up -d
.PHONY: all .PHONY: all
all: redis $(INSTALL_STAMP) lint test all: lint format test