We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af8bd0c commit 8a43903Copy full SHA for 8a43903
noxfile.py
@@ -104,3 +104,16 @@ def test_with_boto3_sdk_as_required_package(session: nox.Session):
104
],
105
extras="aws-sdk",
106
)
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
+ )
tests/functional/validator/__init__.py renamed to tests/functional/validator/_fastjsonschema/__init__.py
tests/functional/validator/test_validator.py renamed to tests/functional/validator/_fastjsonschema/test_validator.py
0 commit comments