Skip to content

Commit ade89c2

Browse files
author
vyuroshchin
committed
up pytest to 9.0.2
1 parent 7cc5a8c commit ade89c2

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

poetry.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ docs = ["sphinx", "sphinx-immaterial"]
9191
black = ">=24.4,<27.0"
9292
isort = "^5.13.2"
9393
pre-commit = "*"
94-
pytest = "^8"
94+
pytest = "^9"
9595
pytest-flake8 = "*"
9696
pytest-cov = "*"
9797
mypy = "^1.14"

tests/integration/test_validators.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -467,8 +467,8 @@ def test_oneof_discriminator(self, validator_class, schema_type):
467467
"properties": {
468468
"discipline": {
469469
"type": "string",
470-
# we allow both the explicitely matched mountain_hiking discipline
471-
# and the implicitely matched MoutainHiking discipline
470+
# we allow both the explicitly matched mountain_hiking discipline
471+
# and the implicitly matched MoutainHiking discipline
472472
"enum": ["mountain_hiking", "MountainHiking"],
473473
},
474474
"length": {
@@ -499,7 +499,7 @@ def test_oneof_discriminator(self, validator_class, schema_type):
499499
{"$ref": "#/components/schemas/AlpineClimbing"},
500500
]
501501

502-
# Add the compoments in a minimalis schema
502+
# Add the components in a minimalis schema
503503
schema = {
504504
"$ref": "#/components/schemas/Route",
505505
"components": {"schemas": components},

0 commit comments

Comments
 (0)