From c39181eddc1bc4776693df08d2b063ab02031803 Mon Sep 17 00:00:00 2001 From: Joan Fontanals Martinez Date: Thu, 28 Sep 2023 18:18:44 +0200 Subject: [PATCH] test: remove skip of s3 --- tests/integrations/store/test_s3.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/integrations/store/test_s3.py b/tests/integrations/store/test_s3.py index eb36ddd907..22105a0ce4 100644 --- a/tests/integrations/store/test_s3.py +++ b/tests/integrations/store/test_s3.py @@ -8,7 +8,6 @@ from docarray import DocList from docarray.documents import TextDoc from docarray.store import S3DocStore -from docarray.utils._internal.pydantic import is_pydantic_v2 from tests.integrations.store import gen_text_docs, get_test_da, profile_memory DA_LEN: int = 2**10 @@ -131,7 +130,6 @@ def test_pushpull_stream_correct(capsys): # for some reason this test is failing with pydantic v2 -@pytest.mark.skipif(is_pydantic_v2, reason="Not working with pydantic v2 for now") @pytest.mark.slow def test_pull_stream_vs_pull_full(): namespace_dir = f'{BUCKET}/test{RANDOM}/pull-stream-vs-pull-full'