Skip to content

Commit a468407

Browse files
chore(ci): add the Data Masking feature to nox tests (#4574)
1 parent c1d51a8 commit a468407

File tree

7 files changed

+14
-0
lines changed

7 files changed

+14
-0
lines changed

noxfile.py

+14
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,17 @@ def test_with_fastjsonschema_as_required_package(session: nox.Session):
119119
],
120120
extras="validation",
121121
)
122+
123+
124+
@nox.session()
125+
def test_with_aws_encryption_sdk_as_required_package(session: nox.Session):
126+
"""Tests that depends on aws_encryption_sdk library"""
127+
# Data Masking
128+
build_and_run_test(
129+
session,
130+
folders=[
131+
f"{PREFIX_TESTS_FUNCTIONAL}/data_masking/_aws_encryption_sdk/",
132+
f"{PREFIX_TESTS_UNIT}/data_masking/_aws_encryption_sdk/",
133+
],
134+
extras="datamasking",
135+
)

tests/functional/data_masking/_aws_encryption_sdk/__init__.py

Whitespace-only changes.

tests/unit/data_masking/__init__.py

Whitespace-only changes.

tests/unit/data_masking/_aws_encryption_sdk/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)