From 44c0a6759f40dfe98744a7f23b6dfeee39bd2ecf Mon Sep 17 00:00:00 2001 From: Varsha GS Date: Tue, 12 Dec 2023 13:52:34 +0530 Subject: [PATCH] Unskip boto3_secretsmanager TC on python>=3.10 Signed-off-by: Varsha GS --- tests/conftest.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 157f6636..e913b5a2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -27,10 +27,8 @@ # Python 3.10 support is incomplete yet # TODO: Remove this once we start supporting Tornado >= 6.0 -# TODO: Remove this once we start supporting moto>=2.0 (impacting boto) if sys.version_info.minor >= 10: collect_ignore_glob.append("*test_tornado*") - collect_ignore_glob.append("*test_boto3_secretsmanager*") # Furthermore on Python 3.11 the above TC is skipped: # tests/opentracing/test_ot_span.py::TestOTSpan::test_stacks # TODO: Remove that once we find a workaround or DROP opentracing!