From 429ee7d035af10c1a73a8a3d9cf29d6b7c9e1045 Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Thu, 29 May 2025 10:08:12 -0400 Subject: [PATCH] add command to makefile --- libs/partners/anthropic/Makefile | 3 +++ libs/partners/openai/Makefile | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/libs/partners/anthropic/Makefile b/libs/partners/anthropic/Makefile index 01ea598d9f2..ec152c28d4f 100644 --- a/libs/partners/anthropic/Makefile +++ b/libs/partners/anthropic/Makefile @@ -19,6 +19,9 @@ integration_test integration_tests: test_watch: uv run --group test ptw --snapshot-update --now . -- -vv $(TEST_FILE) +make benchmark: + uv run --group test pytest ./tests -m benchmark + ###################### # LINTING AND FORMATTING diff --git a/libs/partners/openai/Makefile b/libs/partners/openai/Makefile index a1e652e43b0..ffd1e1b98a3 100644 --- a/libs/partners/openai/Makefile +++ b/libs/partners/openai/Makefile @@ -30,6 +30,10 @@ test_watch: uv run --group test ptw --snapshot-update --now . -- -vv $(TEST_FILE) +make benchmark: + uv run --group test pytest ./tests -m benchmark + + ###################### # LINTING AND FORMATTING ######################