Compare commits

..

2 Commits

Author SHA1 Message Date
Motov Yurii
944a501c67 Simplify condition 2026-02-19 10:12:23 +01:00
Yurii Motov
72b4eb142f Always run tests on push to master branch and when run by scheduler 2026-02-18 23:10:32 +01:00
2 changed files with 15 additions and 15 deletions

View File

@@ -45,7 +45,7 @@ jobs:
test:
needs:
- changes
if: needs.changes.outputs.src == 'true'
if: needs.changes.outputs.src == 'true' || github.ref == 'refs/heads/master'
strategy:
matrix:
os: [ windows-latest, macos-latest ]

View File

@@ -211,7 +211,7 @@ def Path( # noqa: N802
int | None,
Doc(
"""
Maximum number of digits allowed for decimal values.
Maximum number of allow digits for strings.
"""
),
] = _Unset,
@@ -219,7 +219,7 @@ def Path( # noqa: N802
int | None,
Doc(
"""
Maximum number of decimal places allowed for decimal values.
Maximum number of decimal places allowed for numbers.
"""
),
] = _Unset,
@@ -570,7 +570,7 @@ def Query( # noqa: N802
int | None,
Doc(
"""
Maximum number of digits allowed for decimal values.
Maximum number of allow digits for strings.
"""
),
] = _Unset,
@@ -578,7 +578,7 @@ def Query( # noqa: N802
int | None,
Doc(
"""
Maximum number of decimal places allowed for decimal values.
Maximum number of decimal places allowed for numbers.
"""
),
] = _Unset,
@@ -892,7 +892,7 @@ def Header( # noqa: N802
int | None,
Doc(
"""
Maximum number of digits allowed for decimal values.
Maximum number of allow digits for strings.
"""
),
] = _Unset,
@@ -900,7 +900,7 @@ def Header( # noqa: N802
int | None,
Doc(
"""
Maximum number of decimal places allowed for decimal values.
Maximum number of decimal places allowed for numbers.
"""
),
] = _Unset,
@@ -1198,7 +1198,7 @@ def Cookie( # noqa: N802
int | None,
Doc(
"""
Maximum number of digits allowed for decimal values.
Maximum number of allow digits for strings.
"""
),
] = _Unset,
@@ -1206,7 +1206,7 @@ def Cookie( # noqa: N802
int | None,
Doc(
"""
Maximum number of decimal places allowed for decimal values.
Maximum number of decimal places allowed for numbers.
"""
),
] = _Unset,
@@ -1526,7 +1526,7 @@ def Body( # noqa: N802
int | None,
Doc(
"""
Maximum number of digits allowed for decimal values.
Maximum number of allow digits for strings.
"""
),
] = _Unset,
@@ -1534,7 +1534,7 @@ def Body( # noqa: N802
int | None,
Doc(
"""
Maximum number of decimal places allowed for decimal values.
Maximum number of decimal places allowed for numbers.
"""
),
] = _Unset,
@@ -1842,7 +1842,7 @@ def Form( # noqa: N802
int | None,
Doc(
"""
Maximum number of digits allowed for decimal values.
Maximum number of allow digits for strings.
"""
),
] = _Unset,
@@ -1850,7 +1850,7 @@ def Form( # noqa: N802
int | None,
Doc(
"""
Maximum number of decimal places allowed for decimal values.
Maximum number of decimal places allowed for numbers.
"""
),
] = _Unset,
@@ -2157,7 +2157,7 @@ def File( # noqa: N802
int | None,
Doc(
"""
Maximum number of digits allowed for decimal values.
Maximum number of allow digits for strings.
"""
),
] = _Unset,
@@ -2165,7 +2165,7 @@ def File( # noqa: N802
int | None,
Doc(
"""
Maximum number of decimal places allowed for decimal values.
Maximum number of decimal places allowed for numbers.
"""
),
] = _Unset,