openapi-core
openapi-core copied to clipboard
Openapi-core is a Python library that adds client-side and server-side support for the OpenAPI v3.0 and OpenAPI v3.1 specification.
### Actual Behavior I hacked together the code below so that I could test this library in isolation, but for context we are using it inside of a Pyramid app....
Bumps [jsonschema-path](https://github.com/p1c2u/jsonschema-path) from 0.3.2 to 0.3.3. Release notes Sourced from jsonschema-path's releases. 0.3.3 Upgrades Relax dependency constraint to support referencing 0.35 #138 Commits 2e6ec6d Version 0.3.3 3978cfe Merge pull request...
Bumps [responses](https://github.com/getsentry/responses) from 0.25.0 to 0.25.3. Release notes Sourced from responses's releases. 0.25.3 Fixed recorder not saving and loading response headers with yaml files. See #715 0.25.2 Mulligan on 0.25.1...
Bumps [mypy](https://github.com/python/mypy) from 1.8.0 to 1.10.1. Changelog Sourced from mypy's changelog. Mypy 1.10.1 Fix error reporting on cached run after uninstallation of third party library (Shantanu, PR 17420) Acknowledgements Thanks...
Bumps [sphinx-immaterial](https://github.com/jbms/sphinx-immaterial) from 0.11.12 to 0.11.13. Release notes Sourced from sphinx-immaterial's releases. v0.11.13 What's Changed Bump pypa/gh-action-pypi-publish from 1.8.11 to 1.9.0 by @dependabot in jbms/sphinx-immaterial#353 Make python_apigen_default_groups also match canonical...
if value.lower() not in ["false", "true"]: AttributeError: 'int' object has no attribute 'lower'
### Actual Behavior Test failed ### Expected Behavior Test succeeds ### Steps to Reproduce Try to run the tests using ... ```bash python3 -m venv --clear --system-site-packages testenv testenv/bin/python3 -m...
### Actual Behavior This issue is somewhat similar to #551, only with a list in the input (`{'names': [None]}` instead of `{'name': None}`), and this time `RecursionExceeded` is raised instead...
### Actual Behavior String numerical values (`"10"`) are accepted as integers. ### Expected Behavior Unmarshal request should return an error. ### Steps to Reproduce api.yml ``` openapi: 3.0.0 info: title:...
### Actual Behavior I have this schema: ``` ... post: requestBody: content: application/x-www-form-urlencoded: schema: oneOf: - $ref: '#/components/schemas/requestA' - $ref: '#/components/schemas/requestB' ``` and when I test a request with data...