From 6c08e4ab465bd859354f5873bcc728bc92166bdc Mon Sep 17 00:00:00 2001 From: Leandro Damascena Date: Wed, 19 Jun 2024 18:00:30 +0100 Subject: [PATCH] Adding Streaming test --- noxfile.py | 1 + tests/functional/streaming/_boto3/__init__.py | 0 tests/functional/streaming/{ => _boto3}/test_s3_object.py | 0 tests/functional/streaming/{ => _boto3}/test_s3_seekable_io.py | 0 4 files changed, 1 insertion(+) create mode 100644 tests/functional/streaming/_boto3/__init__.py rename tests/functional/streaming/{ => _boto3}/test_s3_object.py (100%) rename tests/functional/streaming/{ => _boto3}/test_s3_seekable_io.py (100%) diff --git a/noxfile.py b/noxfile.py index 68c0241ad0a..b47b7e26254 100644 --- a/noxfile.py +++ b/noxfile.py @@ -103,6 +103,7 @@ def test_with_boto3_sdk_as_required_package(session: nox.Session): folders=[ f"{PREFIX_TESTS_FUNCTIONAL}/parameters/_boto3/", f"{PREFIX_TESTS_FUNCTIONAL}/feature_flags/_boto3/", + f"{PREFIX_TESTS_FUNCTIONAL}/streaming/_boto3/", ], extras="aws-sdk", ) diff --git a/tests/functional/streaming/_boto3/__init__.py b/tests/functional/streaming/_boto3/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/tests/functional/streaming/test_s3_object.py b/tests/functional/streaming/_boto3/test_s3_object.py similarity index 100% rename from tests/functional/streaming/test_s3_object.py rename to tests/functional/streaming/_boto3/test_s3_object.py diff --git a/tests/functional/streaming/test_s3_seekable_io.py b/tests/functional/streaming/_boto3/test_s3_seekable_io.py similarity index 100% rename from tests/functional/streaming/test_s3_seekable_io.py rename to tests/functional/streaming/_boto3/test_s3_seekable_io.py