From fa80474f450bf599b019600ab8f6203b439f1c44 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Fri, 10 Jan 2025 12:40:38 -0500 Subject: [PATCH] chore: Use Poetry venv for make test --- cdp-agentkit-core/Makefile | 2 +- cdp-langchain/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cdp-agentkit-core/Makefile b/cdp-agentkit-core/Makefile index 24d758715..3384752bf 100644 --- a/cdp-agentkit-core/Makefile +++ b/cdp-agentkit-core/Makefile @@ -20,4 +20,4 @@ local-docs: docs .PHONY: test test: - pytest + poetry run pytest diff --git a/cdp-langchain/Makefile b/cdp-langchain/Makefile index 8880a80f7..d4d004f10 100644 --- a/cdp-langchain/Makefile +++ b/cdp-langchain/Makefile @@ -20,4 +20,4 @@ local-docs: docs .PHONY: test test: - pytest + poetry run pytest