Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add django decorator #976

Merged
merged 6 commits into from
Mar 19, 2025
Merged

Add django decorator #976

merged 6 commits into from
Mar 19, 2025

Conversation

mik-laj
Copy link
Contributor

@mik-laj mik-laj commented Mar 19, 2025

Hello,

I have a project where I would like to be able to configure specifications for each view separately, because we have several API variants, and therefore several specification files.

This is very inspired by the approach used by Flask integrations.

Best regards,
Kamil Breguła

if not hasattr(settings, "OPENAPI"):
if not hasattr(settings, "OPENAPI_SPEC"):
raise ImproperlyConfigured(
"OPENAPI_SPEC not defined in settings"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OPENAPI_SPEC is a depreacted, so we should suggest to use OPENAPI.

Copy link

codecov bot commented Mar 19, 2025

Codecov Report

Attention: Patch coverage is 83.01887% with 9 lines in your changes missing coverage. Please review.

Project coverage is 90.62%. Comparing base (c8db221) to head (ca6044e).
Report is 45 commits behind head on master.

Files with missing lines Patch % Lines
openapi_core/contrib/django/providers.py 58.33% 4 Missing and 1 partial ⚠️
openapi_core/contrib/django/decorators.py 89.74% 2 Missing and 2 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master     #976      +/-   ##
==========================================
+ Coverage   90.36%   90.62%   +0.26%     
==========================================
  Files         148      150       +2     
  Lines        4328     4374      +46     
  Branches      529      532       +3     
==========================================
+ Hits         3911     3964      +53     
- Misses        316      318       +2     
+ Partials      101       92       -9     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link
Collaborator

@p1c2u p1c2u left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just one suggestion otherwise looks good 💪

@p1c2u
Copy link
Collaborator

p1c2u commented Mar 19, 2025

Thank you for the contribution

@p1c2u p1c2u merged commit 32345fd into python-openapi:master Mar 19, 2025
7 of 9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants