From b6ced50c0deff022b298f81b17ce9c6c8479a7c8 Mon Sep 17 00:00:00 2001 From: Tyler Romero Date: Thu, 7 Dec 2023 14:47:49 -0800 Subject: [PATCH] Address PR comments --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 2d19f027..58948952 100644 --- a/Makefile +++ b/Makefile @@ -45,14 +45,11 @@ test-local: install ## Run tests against a localhost API (needs GROUNDLIGHT_API test-integ: install ## Run tests against the integ API server (needs GROUNDLIGHT_API_TOKEN) GROUNDLIGHT_ENDPOINT="https://api.integ.groundlight.ai/" ${PYTEST} ${TEST_ARGS} ${CLOUD_FILTERS} test -test-integ-4edge: install ## Run tests against the integ API server (needs GROUNDLIGHT_API_TOKEN) - GROUNDLIGHT_ENDPOINT="https://api.integ.groundlight.ai/" ${PYTEST} ${TEST_ARGS} ${EDGE_FILTERS} 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} ${CLOUD_FILTERS} docs README.md + ${PYTEST} --markdown-docs ${TEST_ARGS} docs README.md test-docs-integ: install ## Run the example code and tests in our docs against the integ API (needs GROUNDLIGHT_API_TOKEN) - GROUNDLIGHT_ENDPOINT="https://api.integ.groundlight.ai/" ${PYTEST} --markdown-docs ${TEST_ARGS} ${CLOUD_FILTERS} docs README.md + GROUNDLIGHT_ENDPOINT="https://api.integ.groundlight.ai/" ${PYTEST} --markdown-docs ${TEST_ARGS} docs README.md # Adjust which paths we lint LINT_PATHS="src test bin samples"