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
32 changes: 32 additions & 0 deletions .github/workflows/contrib-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,28 @@ name: CI / Contrib / Tests

on:
push:
paths:
- openapi_core/**
- tests/integration/contrib/**
- tests/unit/contrib/**
- tests/integration/conftest.py
- tests/integration/data/**
- pyproject.toml
- poetry.lock
- .github/workflows/contrib-tests.yml
- .github/workflows/python-tests.yml
pull_request:
types: [opened, synchronize]
paths:
- openapi_core/**
- tests/integration/contrib/**
- tests/unit/contrib/**
- tests/integration/conftest.py
- tests/integration/data/**
- pyproject.toml
- poetry.lock
- .github/workflows/contrib-tests.yml
- .github/workflows/python-tests.yml

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -40,6 +60,11 @@ jobs:
unit_path: tests/unit/contrib/django
spec: ">=5.0,<6.0"
label: "django-5.x"
- contrib: django
integration_path: tests/integration/contrib/django
unit_path: tests/unit/contrib/django
spec: ">=6.0,<7.0"
label: "django-6.x"
- contrib: falcon
integration_path: tests/integration/contrib/falcon
spec: ">=4.0,<5.0"
Expand Down Expand Up @@ -80,6 +105,13 @@ jobs:
spec: ""
label: "werkzeug-default"
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
exclude:
- target:
label: "django-6.x"
python-version: "3.10"
- target:
label: "django-6.x"
python-version: "3.11"
fail-fast: false
steps:
- uses: actions/checkout@v6
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,20 @@ name: CI / Core / Tests

on:
push:
paths-ignore:
- openapi_core/contrib/**
- tests/integration/contrib/**
- tests/unit/contrib/**
- docs/integrations/**
- .github/workflows/contrib-tests.yml
pull_request:
types: [opened, synchronize]
paths-ignore:
- openapi_core/contrib/**
- tests/integration/contrib/**
- tests/unit/contrib/**
- docs/integrations/**
- .github/workflows/contrib-tests.yml

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Supported [Integrations](https://openapi-core.readthedocs.io/en/latest/integrati
| Integration | Version(s) |
| --- | --- |
| [AIOHTTP](https://openapi-core.readthedocs.io/en/latest/integrations/aiohttp/) | versions 3.8+ and 3.11+ tracks |
| [Django](https://openapi-core.readthedocs.io/en/latest/integrations/django/) | versions 4 and 5 |
| [Django](https://openapi-core.readthedocs.io/en/latest/integrations/django/) | versions 4, 5, and 6 |
| [Falcon](https://openapi-core.readthedocs.io/en/latest/integrations/falcon/) | version 4 |
| [FastAPI](https://openapi-core.readthedocs.io/en/latest/integrations/fastapi/) | versions 0.11x and 0.12x |
| [Flask](https://openapi-core.readthedocs.io/en/latest/integrations/flask/) | versions 2 and 3 |
Expand Down
2 changes: 1 addition & 1 deletion docs/integrations/django.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Django

This section describes the integration with the [Django](https://www.djangoproject.com) web framework.
The integration supports Django version 4 and 5.
The integration supports Django version 4, 5, and 6.

## Middleware

Expand Down
Loading