Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)