diff --git a/noxfile.py b/noxfile.py index d90ede27f8e..cdbdfb5d6a8 100644 --- a/noxfile.py +++ b/noxfile.py @@ -95,10 +95,12 @@ def test_with_xray_sdk_as_required_package(session: nox.Session): def test_with_boto3_sdk_as_required_package(session: nox.Session): """Tests that depends on boto3/botocore library""" # Parameters + # Feature Flags build_and_run_test( session, folders=[ f"{PREFIX_TESTS_FUNCTIONAL}/parameters/_boto3/", + f"{PREFIX_TESTS_FUNCTIONAL}/feature_flags/_boto3/", ], extras="aws-sdk", ) diff --git a/tests/functional/feature_flags/__init__.py b/tests/functional/feature_flags/_boto3/__init__.py similarity index 100% rename from tests/functional/feature_flags/__init__.py rename to tests/functional/feature_flags/_boto3/__init__.py diff --git a/tests/functional/feature_flags/test_feature_flags.py b/tests/functional/feature_flags/_boto3/test_feature_flags.py similarity index 100% rename from tests/functional/feature_flags/test_feature_flags.py rename to tests/functional/feature_flags/_boto3/test_feature_flags.py diff --git a/tests/functional/feature_flags/test_schema_validation.py b/tests/functional/feature_flags/_boto3/test_schema_validation.py similarity index 100% rename from tests/functional/feature_flags/test_schema_validation.py rename to tests/functional/feature_flags/_boto3/test_schema_validation.py diff --git a/tests/functional/feature_flags/test_time_based_actions.py b/tests/functional/feature_flags/_boto3/test_time_based_actions.py similarity index 100% rename from tests/functional/feature_flags/test_time_based_actions.py rename to tests/functional/feature_flags/_boto3/test_time_based_actions.py