From 7de9aed8887edf80df94946e1bf700864dcea0bc Mon Sep 17 00:00:00 2001 From: Leandro Damascena Date: Wed, 19 Jun 2024 13:29:17 +0100 Subject: [PATCH] Adding tracer test --- noxfile.py | 13 +++++++++++++ tests/functional/tracing/__init__.py | 0 tests/functional/tracing/aws_xray_sdk/__init__.py | 0 .../{ => tracing/aws_xray_sdk}/test_tracing.py | 0 4 files changed, 13 insertions(+) create mode 100644 tests/functional/tracing/__init__.py create mode 100644 tests/functional/tracing/aws_xray_sdk/__init__.py rename tests/functional/{ => tracing/aws_xray_sdk}/test_tracing.py (100%) 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