mirror of https://github.com/tiangolo/fastapi.git
Merge branch 'master' into param-tests
This commit is contained in:
commit
b6b79f1f5f
|
|
@ -44,22 +44,44 @@ jobs:
|
||||||
run: bash scripts/lint.sh
|
run: bash scripts/lint.sh
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version:
|
os: [ ubuntu-latest, windows-latest, macos-latest ]
|
||||||
- "3.14"
|
python-version: [ "3.14" ]
|
||||||
- "3.13"
|
pydantic-version: [ "pydantic-v2" ]
|
||||||
- "3.12"
|
coverage: ["coverage"]
|
||||||
- "3.11"
|
include:
|
||||||
- "3.10"
|
- os: macos-latest
|
||||||
- "3.9"
|
python-version: "3.8"
|
||||||
- "3.8"
|
|
||||||
pydantic-version: ["pydantic-v1", "pydantic-v2"]
|
|
||||||
exclude:
|
|
||||||
- python-version: "3.14"
|
|
||||||
pydantic-version: "pydantic-v1"
|
pydantic-version: "pydantic-v1"
|
||||||
|
coverage: coverage
|
||||||
|
- os: windows-latest
|
||||||
|
python-version: "3.8"
|
||||||
|
pydantic-version: "pydantic-v2"
|
||||||
|
coverage: coverage
|
||||||
|
- os: ubuntu-latest
|
||||||
|
python-version: "3.9"
|
||||||
|
pydantic-version: "pydantic-v1"
|
||||||
|
coverage: coverage
|
||||||
|
- os: macos-latest
|
||||||
|
python-version: "3.10"
|
||||||
|
pydantic-version: "pydantic-v2"
|
||||||
|
- os: windows-latest
|
||||||
|
python-version: "3.11"
|
||||||
|
pydantic-version: "pydantic-v1"
|
||||||
|
- os: ubuntu-latest
|
||||||
|
python-version: "3.12"
|
||||||
|
pydantic-version: "pydantic-v2"
|
||||||
|
- os: macos-latest
|
||||||
|
python-version: "3.13"
|
||||||
|
pydantic-version: "pydantic-v1"
|
||||||
|
coverage: coverage
|
||||||
|
- os: windows-latest
|
||||||
|
python-version: "3.13"
|
||||||
|
pydantic-version: "pydantic-v2"
|
||||||
|
coverage: coverage
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Dump GitHub context
|
- name: Dump GitHub context
|
||||||
env:
|
env:
|
||||||
|
|
@ -96,10 +118,12 @@ jobs:
|
||||||
env:
|
env:
|
||||||
COVERAGE_FILE: coverage/.coverage.${{ runner.os }}-py${{ matrix.python-version }}
|
COVERAGE_FILE: coverage/.coverage.${{ runner.os }}-py${{ matrix.python-version }}
|
||||||
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}
|
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}
|
||||||
|
# Do not store coverage for all possible combinations to avoid file size max errors in Smokeshow
|
||||||
- name: Store coverage files
|
- name: Store coverage files
|
||||||
|
if: matrix.coverage == 'coverage'
|
||||||
uses: actions/upload-artifact@v5
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: coverage-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
|
name: coverage-${{ runner.os }}-${{ matrix.python-version }}-${{ matrix.pydantic-version }}
|
||||||
path: coverage
|
path: coverage
|
||||||
include-hidden-files: true
|
include-hidden-files: true
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ Use as follows:
|
||||||
|
|
||||||
The tests:
|
The tests:
|
||||||
|
|
||||||
## Code snippets { #code-snippets}
|
## Code snippets { #code-snippets }
|
||||||
|
|
||||||
//// tab | Test
|
//// tab | Test
|
||||||
|
|
||||||
|
|
@ -53,7 +53,7 @@ See for example section `### Quotes` in `docs/de/llm-prompt.md`.
|
||||||
|
|
||||||
////
|
////
|
||||||
|
|
||||||
## Quotes in code snippets { #quotes-in-code-snippets}
|
## Quotes in code snippets { #quotes-in-code-snippets }
|
||||||
|
|
||||||
//// tab | Test
|
//// tab | Test
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -52,13 +52,13 @@ The key features are:
|
||||||
|
|
||||||
<!-- sponsors -->
|
<!-- sponsors -->
|
||||||
|
|
||||||
### Keystone Sponsor
|
### Keystone Sponsor { #keystone-sponsor }
|
||||||
|
|
||||||
{% for sponsor in sponsors.keystone -%}
|
{% for sponsor in sponsors.keystone -%}
|
||||||
<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
|
<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
|
||||||
{% endfor -%}
|
{% endfor -%}
|
||||||
|
|
||||||
### Gold and Silver Sponsors
|
### Gold and Silver Sponsors { #gold-and-silver-sponsors }
|
||||||
|
|
||||||
{% for sponsor in sponsors.gold -%}
|
{% for sponsor in sponsors.gold -%}
|
||||||
<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
|
<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ hide:
|
||||||
|
|
||||||
### Docs
|
### Docs
|
||||||
|
|
||||||
|
* 📝 Tweak links format. PR [#14505](https://github.com/fastapi/fastapi/pull/14505) by [@tiangolo](https://github.com/tiangolo).
|
||||||
* 📝 Update docs about re-raising validation errors, do not include string as is to not leak information. PR [#14487](https://github.com/fastapi/fastapi/pull/14487) by [@tiangolo](https://github.com/tiangolo).
|
* 📝 Update docs about re-raising validation errors, do not include string as is to not leak information. PR [#14487](https://github.com/fastapi/fastapi/pull/14487) by [@tiangolo](https://github.com/tiangolo).
|
||||||
* 🔥 Remove external links section. PR [#14486](https://github.com/fastapi/fastapi/pull/14486) by [@tiangolo](https://github.com/tiangolo).
|
* 🔥 Remove external links section. PR [#14486](https://github.com/fastapi/fastapi/pull/14486) by [@tiangolo](https://github.com/tiangolo).
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -196,6 +196,7 @@ source = [
|
||||||
"tests",
|
"tests",
|
||||||
"fastapi"
|
"fastapi"
|
||||||
]
|
]
|
||||||
|
relative_files = true
|
||||||
context = '${CONTEXT}'
|
context = '${CONTEXT}'
|
||||||
dynamic_context = "test_function"
|
dynamic_context = "test_function"
|
||||||
omit = [
|
omit = [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue