Skip to content

Commit d75b3bf

Browse files
chore(ci): add the Tracer feature to nox tests (#4567)
1 parent 5626c97 commit d75b3bf

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

noxfile.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,16 @@ def test_with_datadog_as_required_package(session: nox.Session):
7272
],
7373
extras="datadog",
7474
)
75+
76+
77+
@nox.session()
78+
def test_with_xray_sdk_as_required_package(session: nox.Session):
79+
"""Tests that depends on AWS XRAY SDK library"""
80+
# Tracer
81+
build_and_run_test(
82+
session,
83+
folders=[
84+
f"{PREFIX_TESTS_FUNCTIONAL}/tracing/aws_xray_sdk/",
85+
],
86+
extras="tracer",
87+
)

tests/functional/tracing/__init__.py

Whitespace-only changes.

tests/functional/tracing/aws_xray_sdk/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)