From 7d0ceda8bf6dc8dd9564d2cf9b1dcc99c1897c4b Mon Sep 17 00:00:00 2001 From: Leandro Damascena Date: Wed, 19 Jun 2024 14:43:48 +0100 Subject: [PATCH] Adding Feature flags test --- noxfile.py | 2 ++ tests/functional/feature_flags/{ => _boto3}/__init__.py | 0 .../functional/feature_flags/{ => _boto3}/test_feature_flags.py | 0 .../feature_flags/{ => _boto3}/test_schema_validation.py | 0 .../feature_flags/{ => _boto3}/test_time_based_actions.py | 0 5 files changed, 2 insertions(+) rename tests/functional/feature_flags/{ => _boto3}/__init__.py (100%) rename tests/functional/feature_flags/{ => _boto3}/test_feature_flags.py (100%) rename tests/functional/feature_flags/{ => _boto3}/test_schema_validation.py (100%) rename tests/functional/feature_flags/{ => _boto3}/test_time_based_actions.py (100%) 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