Skip to content

Commit 76a9d0a

Browse files
committed
now it works
1 parent 3ec1077 commit 76a9d0a

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

Makefile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,13 @@ test-4edge: install ## Run tests against the prod API via the edge-endpoint (ne
4949
${PYTEST} ${PROFILING_ARGS} ${TEST_ARGS} ${EDGE_FILTERS} test
5050

5151
test-local: install ## Run tests against a localhost API (needs GROUNDLIGHT_API_TOKEN and a local API server)
52-
$(eval GROUNDLIGHT_ENDPOINT="http://localhost:8000/")
53-
$(MAKE) test
52+
GROUNDLIGHT_ENDPOINT="http://localhost:8000/" $(MAKE) test
5453

5554
test-integ: install ## Run tests against the integ API server (needs GROUNDLIGHT_API_TOKEN)
56-
$(eval GROUNDLIGHT_ENDPOINT="https://api.integ.groundlight.ai/")
57-
$(MAKE) test
55+
GROUNDLIGHT_ENDPOINT="https://api.integ.groundlight.ai/" $(MAKE) test
5856

5957
test-dev: install ## Run tests against a dev API server (needs GROUNDLIGHT_API_TOKEN and properly configured dns-hostmap)
60-
$(eval GROUNDLIGHT_ENDPOINT="https://api.dev.groundlight.ai/")
61-
$(MAKE) test
58+
GROUNDLIGHT_ENDPOINT="https://api.dev.groundlight.ai/" $(MAKE) test
6259

6360
test-docs: install ## Run the example code and tests in our docs against the prod API (needs GROUNDLIGHT_API_TOKEN)
6461
${PYTEST} --markdown-docs ${TEST_ARGS} docs README.md

0 commit comments

Comments
 (0)