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
16 changes: 8 additions & 8 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ docs = ["sphinx", "sphinx-immaterial"]
black = ">=24.4,<27.0"
isort = "^5.13.2"
pre-commit = "*"
pytest = "^8"
pytest = "^9"
pytest-flake8 = "*"
pytest-cov = "*"
mypy = "^1.14"
Expand All @@ -107,6 +107,7 @@ sphinx-immaterial = ">=0.11,<0.13"
addopts = """
--capture=no
--verbose
--color=yes
--showlocals
--junitxml=reports/junit.xml
--cov=openapi_schema_validator
Expand Down
6 changes: 3 additions & 3 deletions tests/integration/test_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,8 @@ def test_oneof_discriminator(self, validator_class, schema_type):
"properties": {
"discipline": {
"type": "string",
# we allow both the explicitely matched mountain_hiking discipline
# and the implicitely matched MoutainHiking discipline
# we allow both the explicitly matched mountain_hiking discipline
# and the implicitly matched MoutainHiking discipline
"enum": ["mountain_hiking", "MountainHiking"],
},
"length": {
Expand Down Expand Up @@ -499,7 +499,7 @@ def test_oneof_discriminator(self, validator_class, schema_type):
{"$ref": "#/components/schemas/AlpineClimbing"},
]

# Add the compoments in a minimalis schema
# Add the components in a minimalis schema
schema = {
"$ref": "#/components/schemas/Route",
"components": {"schemas": components},
Expand Down
Loading