From 82a7f11c32409adf051aaf8392d537ce96ce084b Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Tue, 20 May 2025 14:13:11 -0400 Subject: [PATCH] temporarily subset integration tests --- libs/partners/anthropic/Makefile | 2 +- libs/partners/openai/Makefile | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/partners/anthropic/Makefile b/libs/partners/anthropic/Makefile index 136c4debc85..5c3313a974a 100644 --- a/libs/partners/anthropic/Makefile +++ b/libs/partners/anthropic/Makefile @@ -14,7 +14,7 @@ test tests: uv run --group test pytest -vvv --disable-socket --allow-unix-socket $(TEST_FILE) integration_test integration_tests: - uv run --group test --group test_integration pytest -vvv --timeout 30 $(TEST_FILE) + uv run --group test --group test_integration pytest -vvv --timeout 30 $(TEST_FILE) -k test_stream_time test_watch: uv run --group test ptw --snapshot-update --now . -- -vv $(TEST_FILE) diff --git a/libs/partners/openai/Makefile b/libs/partners/openai/Makefile index 7eca148a4a0..daaee93e39b 100644 --- a/libs/partners/openai/Makefile +++ b/libs/partners/openai/Makefile @@ -24,7 +24,8 @@ test tests: TIKTOKEN_CACHE_DIR=tiktoken_cache uv run --group test pytest --disable-socket --allow-unix-socket $(TEST_FILE) integration_test integration_tests: - uv run --group test --group test_integration pytest -n auto $(TEST_FILE) + uv run --group test --group test_integration pytest -n auto $(TEST_FILE) -k test_stream_time +# uv run python -m pytest tests/integration_tests/chat_models/test_base_standard.py::TestOpenAIStandard::test_stream_time test_watch: uv run --group test ptw --snapshot-update --now . -- -vv $(TEST_FILE)