diff --git a/noxfile.py b/noxfile.py index cdbdfb5d6a8..b4ecc83a37d 100644 --- a/noxfile.py +++ b/noxfile.py @@ -104,3 +104,16 @@ def test_with_boto3_sdk_as_required_package(session: nox.Session): ], extras="aws-sdk", ) + + +@nox.session() +def test_with_fastjsonschema_as_required_package(session: nox.Session): + """Tests that depends on boto3/botocore library""" + # Validation + build_and_run_test( + session, + folders=[ + f"{PREFIX_TESTS_FUNCTIONAL}/validator/_fastjsonschema/", + ], + extras="validation", + ) diff --git a/tests/functional/validator/__init__.py b/tests/functional/validator/_fastjsonschema/__init__.py similarity index 100% rename from tests/functional/validator/__init__.py rename to tests/functional/validator/_fastjsonschema/__init__.py diff --git a/tests/functional/validator/test_validator.py b/tests/functional/validator/_fastjsonschema/test_validator.py similarity index 100% rename from tests/functional/validator/test_validator.py rename to tests/functional/validator/_fastjsonschema/test_validator.py