Skip to content

Commit 51a3ac9

Browse files
committed
Django 6 support
1 parent 3eeadbc commit 51a3ac9

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

.github/workflows/contrib-tests.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,28 @@ name: CI / Contrib / Tests
22

33
on:
44
push:
5+
paths:
6+
- openapi_core/**
7+
- tests/integration/contrib/**
8+
- tests/unit/contrib/**
9+
- tests/integration/conftest.py
10+
- tests/integration/data/**
11+
- pyproject.toml
12+
- poetry.lock
13+
- .github/workflows/contrib-tests.yml
14+
- .github/workflows/python-tests.yml
515
pull_request:
616
types: [opened, synchronize]
17+
paths:
18+
- openapi_core/**
19+
- tests/integration/contrib/**
20+
- tests/unit/contrib/**
21+
- tests/integration/conftest.py
22+
- tests/integration/data/**
23+
- pyproject.toml
24+
- poetry.lock
25+
- .github/workflows/contrib-tests.yml
26+
- .github/workflows/python-tests.yml
727

828
concurrency:
929
group: ${{ github.workflow }}-${{ github.ref }}
@@ -40,6 +60,11 @@ jobs:
4060
unit_path: tests/unit/contrib/django
4161
spec: ">=5.0,<6.0"
4262
label: "django-5.x"
63+
- contrib: django
64+
integration_path: tests/integration/contrib/django
65+
unit_path: tests/unit/contrib/django
66+
spec: ">=6.0,<7.0"
67+
label: "django-6.x"
4368
- contrib: falcon
4469
integration_path: tests/integration/contrib/falcon
4570
spec: ">=4.0,<5.0"

.github/workflows/python-tests.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,20 @@ name: CI / Core / Tests
55

66
on:
77
push:
8+
paths-ignore:
9+
- openapi_core/contrib/**
10+
- tests/integration/contrib/**
11+
- tests/unit/contrib/**
12+
- docs/integrations/**
13+
- .github/workflows/contrib-tests.yml
814
pull_request:
915
types: [opened, synchronize]
16+
paths-ignore:
17+
- openapi_core/contrib/**
18+
- tests/integration/contrib/**
19+
- tests/unit/contrib/**
20+
- docs/integrations/**
21+
- .github/workflows/contrib-tests.yml
1022

1123
permissions:
1224
contents: read

0 commit comments

Comments
 (0)