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)