mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-25 16:19:43 +02:00
* bump ruff and mypy * mypy fixes * bump and fix openapi * drop debug statement * bump extruct * bump recipes-scrapers
8 lines
237 B
Python
8 lines
237 B
Python
from openapi_spec_validator import openapi_v30_spec_validator, validate_spec
|
|
|
|
from mealie.app import app
|
|
|
|
|
|
def test_validate_open_api_spec():
|
|
open_api = app.openapi()
|
|
validate_spec(open_api, validator=openapi_v30_spec_validator)
|