Skip to content

Commit 8a43903

Browse files
chore(ci): add the Validation feature to nox tests (#4571)
* Adding Validation test * Adding Validation test
1 parent af8bd0c commit 8a43903

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

Diff for: noxfile.py

+13
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,16 @@ def test_with_boto3_sdk_as_required_package(session: nox.Session):
104104
],
105105
extras="aws-sdk",
106106
)
107+
108+
109+
@nox.session()
110+
def test_with_fastjsonschema_as_required_package(session: nox.Session):
111+
"""Tests that depends on boto3/botocore library"""
112+
# Validation
113+
build_and_run_test(
114+
session,
115+
folders=[
116+
f"{PREFIX_TESTS_FUNCTIONAL}/validator/_fastjsonschema/",
117+
],
118+
extras="validation",
119+
)

0 commit comments

Comments
 (0)