From b745281eeca82a780b9ba238894662230d4ef29b Mon Sep 17 00:00:00 2001 From: ccurme Date: Tue, 17 Dec 2024 10:47:17 -0500 Subject: [PATCH] anthropic[patch]: increase timeouts for integration tests (#28767) Some tests consistently ran into the 10s limit in CI. --- libs/partners/anthropic/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/partners/anthropic/Makefile b/libs/partners/anthropic/Makefile index 256ab677b83de..0bab6dfe077fd 100644 --- a/libs/partners/anthropic/Makefile +++ b/libs/partners/anthropic/Makefile @@ -8,7 +8,7 @@ TEST_FILE ?= tests/unit_tests/ integration_test integration_tests: TEST_FILE=tests/integration_tests/ test tests integration_test integration_tests: - poetry run pytest -vvv --timeout 10 $(TEST_FILE) + poetry run pytest -vvv --timeout 30 $(TEST_FILE) test_watch: poetry run ptw --snapshot-update --now . -- -vv $(TEST_FILE)