Skip to content

Commit

Permalink
now it works
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyEWood committed Nov 11, 2024
1 parent 3ec1077 commit 76a9d0a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 76a9d0a

Please sign in to comment.