diff --git a/libs/partners/anthropic/Makefile b/libs/partners/anthropic/Makefile index ec152c28d4f..917ad66dded 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) --vcr-record=none + uv run --group test --group test_integration pytest -vvv --timeout 30 $(TEST_FILE) 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 ffd1e1b98a3..b77a1731370 100644 --- a/libs/partners/openai/Makefile +++ b/libs/partners/openai/Makefile @@ -24,7 +24,7 @@ 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) --vcr-record=none + uv run --group test --group test_integration pytest -n auto $(TEST_FILE) test_watch: uv run --group test ptw --snapshot-update --now . -- -vv $(TEST_FILE) diff --git a/libs/standard-tests/langchain_tests/integration_tests/chat_models.py b/libs/standard-tests/langchain_tests/integration_tests/chat_models.py index 218e48ca3c8..854b98f9abb 100644 --- a/libs/standard-tests/langchain_tests/integration_tests/chat_models.py +++ b/libs/standard-tests/langchain_tests/integration_tests/chat_models.py @@ -661,12 +661,6 @@ class ChatModelIntegrationTests(ChatModelTests): You can then commit the cassette to your repository. Subsequent test runs will use the cassette instead of making HTTP calls. - - .. tip:: - Adding ``--vcr-record=none`` to the pytest command will ensure that - no new cassettes are recorded, and only existing cassettes are used. - Consider adding this to your CI configuration (e.g., modify relevant - Makefile commands). """ # noqa: E501 @property diff --git a/libs/standard-tests/langchain_tests/unit_tests/chat_models.py b/libs/standard-tests/langchain_tests/unit_tests/chat_models.py index 5a5ff1c0790..82a5ef800f5 100644 --- a/libs/standard-tests/langchain_tests/unit_tests/chat_models.py +++ b/libs/standard-tests/langchain_tests/unit_tests/chat_models.py @@ -763,13 +763,6 @@ class ChatModelUnitTests(ChatModelTests): You can then commit the cassette to your repository. Subsequent test runs will use the cassette instead of making HTTP calls. - .. tip:: - Adding ``--vcr-record=none`` to the pytest command will ensure that - no new cassettes are recorded, and only existing cassettes are used. - Consider adding this to your CI configuration (e.g., modify relevant - Makefile commands). - - Testing initialization from environment variables Some unit tests may require testing initialization from environment variables. These tests can be enabled by overriding the ``init_from_env_params``