From 76a9d0ad01e6d6c93a3ed2356bee0984f0bdedf2 Mon Sep 17 00:00:00 2001 From: CoreyEWood Date: Mon, 11 Nov 2024 19:56:18 +0000 Subject: [PATCH] now it works --- Makefile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index d9bf1fe3..84dcf563 100644 --- a/Makefile +++ b/Makefile @@ -49,16 +49,13 @@ test-4edge: install ## Run tests against the prod API via the edge-endpoint (ne ${PYTEST} ${PROFILING_ARGS} ${TEST_ARGS} ${EDGE_FILTERS} test 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 + GROUNDLIGHT_ENDPOINT="http://localhost:8000/" $(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 + GROUNDLIGHT_ENDPOINT="https://api.integ.groundlight.ai/" $(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 + GROUNDLIGHT_ENDPOINT="https://api.dev.groundlight.ai/" $(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