From 71a3b7394d18f083798d131fde8706038b81ec7b Mon Sep 17 00:00:00 2001 From: Chamaru Amasara Date: Tue, 10 Feb 2026 08:45:39 +0530 Subject: [PATCH] fix: remove pytest retry flags from integration tests --- libs/claude-code/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/claude-code/Makefile b/libs/claude-code/Makefile index ffbb108..500f383 100644 --- a/libs/claude-code/Makefile +++ b/libs/claude-code/Makefile @@ -15,7 +15,7 @@ test tests: uv run --group test pytest --disable-socket --allow-unix-socket $(TEST_FILE) integration_test integration_tests: - uv run --group test --group test_integration pytest --retries 3 --retry-delay 1 $(TEST_FILE) + uv run --group test --group test_integration pytest $(TEST_FILE) check_imports: $(shell find langchain_claude_code -name '*.py') uv run --all-groups python ./scripts/check_imports.py $^