diff --git a/noxfile.py b/noxfile.py index 56f56b8b63f..d90ede27f8e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -89,3 +89,16 @@ def test_with_xray_sdk_as_required_package(session: nox.Session): ], extras="tracer", ) + + +@nox.session() +def test_with_boto3_sdk_as_required_package(session: nox.Session): + """Tests that depends on boto3/botocore library""" + # Parameters + build_and_run_test( + session, + folders=[ + f"{PREFIX_TESTS_FUNCTIONAL}/parameters/_boto3/", + ], + extras="aws-sdk", + ) diff --git a/tests/functional/parameters/__init__.py b/tests/functional/parameters/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/tests/functional/test_utilities_parameters.py b/tests/functional/parameters/_boto3/test_utilities_parameters.py similarity index 100% rename from tests/functional/test_utilities_parameters.py rename to tests/functional/parameters/_boto3/test_utilities_parameters.py