Skip to content

Commit 632953b

Browse files
author
Simon Prickett
authored
Merge pull request redis#227 from moznuy/fix/80
Update the help text in Makefile text to include all options
2 parents 935d53b + 43dc515 commit 632953b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Makefile

+7-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,14 @@ help:
1414
@echo " clean remove all temporary files"
1515
@echo " lint run the code linters"
1616
@echo " format reformat code"
17-
@echo " test run all the tests"
17+
@echo " test run all the tests against redislabs/redisearch:edge"
18+
@echo " test_oss run all the tests against redis:latest"
1819
@echo " shell open a Poetry shell"
1920
@echo " redis start a Redis instance with Docker"
21+
@echo " sync generate modules redis_om, tests_sync from aredis_om, tests respectively"
22+
@echo " dist build a redis-om package"
23+
@echo " upload upload a redis-om package to PyPI"
24+
@echo " all equivalent to \"make lint format test\""
2025
@echo ""
2126
@echo "Check the Makefile to know exactly what each target is doing."
2227

@@ -85,4 +90,4 @@ redis:
8590
docker-compose up -d
8691

8792
.PHONY: all
88-
all: redis $(INSTALL_STAMP) lint test
93+
all: lint format test

0 commit comments

Comments
 (0)