diff --git a/noxfile.py b/noxfile.py index 83f4685379b..ca8c157d19b 100644 --- a/noxfile.py +++ b/noxfile.py @@ -72,3 +72,16 @@ def test_with_datadog_as_required_package(session: nox.Session): ], extras="datadog", ) + + +@nox.session() +def test_with_xray_sdk_as_required_package(session: nox.Session): + """Tests that depends on AWS XRAY SDK library""" + # Tracer + build_and_run_test( + session, + folders=[ + f"{PREFIX_TESTS_FUNCTIONAL}/tracing/aws_xray_sdk/", + ], + extras="tracer", + ) diff --git a/tests/functional/tracing/__init__.py b/tests/functional/tracing/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/tests/functional/tracing/aws_xray_sdk/__init__.py b/tests/functional/tracing/aws_xray_sdk/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/tests/functional/test_tracing.py b/tests/functional/tracing/aws_xray_sdk/test_tracing.py similarity index 100% rename from tests/functional/test_tracing.py rename to tests/functional/tracing/aws_xray_sdk/test_tracing.py