Skip to content

Commit f5053c2

Browse files
chore(ci): add the Parameters feature to nox tests (#4569)
Adding Parameters test
1 parent 8fd8a13 commit f5053c2

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

noxfile.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,16 @@ def test_with_xray_sdk_as_required_package(session: nox.Session):
8989
],
9090
extras="tracer",
9191
)
92+
93+
94+
@nox.session()
95+
def test_with_boto3_sdk_as_required_package(session: nox.Session):
96+
"""Tests that depends on boto3/botocore library"""
97+
# Parameters
98+
build_and_run_test(
99+
session,
100+
folders=[
101+
f"{PREFIX_TESTS_FUNCTIONAL}/parameters/_boto3/",
102+
],
103+
extras="aws-sdk",
104+
)

tests/functional/parameters/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)