diff --git a/libs/cli/langchain_cli/integration_template/Makefile b/libs/cli/langchain_cli/integration_template/Makefile index cf748963e22..bed6f5bda53 100644 --- a/libs/cli/langchain_cli/integration_template/Makefile +++ b/libs/cli/langchain_cli/integration_template/Makefile @@ -6,7 +6,9 @@ all: help # Define a variable for the test file path. TEST_FILE ?= tests/unit_tests/ -test: +integration_tests: TEST_FILE = tests/integration_tests/ + +test integration_tests: poetry run pytest $(TEST_FILE) tests: