From 6e7da33e89b7a75d5a3ac0bcc888e9bdbec76c6a Mon Sep 17 00:00:00 2001 From: Jhonatan Lopes Date: Fri, 15 Sep 2023 20:33:16 -0300 Subject: [PATCH] Fix docstring --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 354f42a..3e38814 100644 --- a/Makefile +++ b/Makefile @@ -40,5 +40,5 @@ migrations: ## Make migrations to the wagtail bakery site migrate: ## Migrate the wagtail bakery site migrations docker-compose exec web python manage.py migrate -test: ## Run all wagtail tests or pass in a file with `make test file=wagtail.admin.tests.test_name.py` +test: ## Run all wagtail tests or pass in a file with `make test file=wagtail.admin.tests.test_name` docker-compose exec -w /code/wagtail web python runtests.py $(file) $(FILE)