From 3ec1077aa8be8f39a08f4c8b23fb56dcff2f3eb8 Mon Sep 17 00:00:00 2001 From: CoreyEWood Date: Mon, 11 Nov 2024 19:50:25 +0000 Subject: [PATCH] fix make formatting --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6dbb2c3e..d9bf1fe3 100644 --- a/Makefile +++ b/Makefile @@ -50,15 +50,15 @@ test-4edge: install ## Run tests against the prod API via the edge-endpoint (ne test-local: install ## Run tests against a localhost API (needs GROUNDLIGHT_API_TOKEN and a local API server) $(eval GROUNDLIGHT_ENDPOINT="http://localhost:8000/") - $(MAKE) test + $(MAKE) test test-integ: install ## Run tests against the integ API server (needs GROUNDLIGHT_API_TOKEN) $(eval GROUNDLIGHT_ENDPOINT="https://api.integ.groundlight.ai/") - $(MAKE) test + $(MAKE) test test-dev: install ## Run tests against a dev API server (needs GROUNDLIGHT_API_TOKEN and properly configured dns-hostmap) $(eval GROUNDLIGHT_ENDPOINT="https://api.dev.groundlight.ai/") - $(MAKE) test + $(MAKE) test test-docs: install ## Run the example code and tests in our docs against the prod API (needs GROUNDLIGHT_API_TOKEN) ${PYTEST} --markdown-docs ${TEST_ARGS} docs README.md