From 296f8ab376cf6c803180de84075a133b983785d9 Mon Sep 17 00:00:00 2001 From: Ben Thorner Date: Wed, 17 Mar 2021 09:48:09 +0000 Subject: [PATCH] Run 'test-requirements' as part of 'make test' This is consistent with our other apps [1]. Although it won't get picked up by CI just yet [2], we can still benefit from it locally. [1]: https://github.com/alphagov/document-download-api/blob/master/Makefile#L25 [2]: https://github.com/alphagov/notifications-manuals/issues/9 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cfbac125b..b97a999a7 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ generate-version-file: ## Generates the app version file @echo -e "__git_commit__ = \"${GIT_COMMIT}\"\n__time__ = \"${DATE}\"" > ${APP_VERSION_FILE} .PHONY: test -test: generate-version-file ## Run tests +test: test-requirements ## Run tests ./scripts/run_tests.sh .PHONY: freeze-requirements