From 136276148a52d0827ef3210a3753bf4f6ba559dc Mon Sep 17 00:00:00 2001 From: Simon Prickett Date: Thu, 31 Mar 2022 09:58:24 +0100 Subject: [PATCH] Runs docker-compose down at end of clean and test targets. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 8006cc2..0ff65d0 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,7 @@ clean: rm -rf build rm -rf dist rm -rf redis_om + docker-compose down .PHONY: dist @@ -64,6 +65,7 @@ format: $(INSTALL_STAMP) sync .PHONY: test test: $(INSTALL_STAMP) sync redis 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 test_oss: $(INSTALL_STAMP) sync redis