👷 Fix GitHub Actions build docs filter paths for GitHub workflows (#738)
* 👷 Fix GitHub Actions build docs filter paths for GitHub workflows * 🎨 Update format of expression and conftest
This commit is contained in:
parent
b892504141
commit
8419545a3a
4
.github/workflows/build-docs.yml
vendored
4
.github/workflows/build-docs.yml
vendored
@ -30,8 +30,8 @@ jobs:
|
||||
- pyproject.toml
|
||||
- mkdocs.yml
|
||||
- mkdocs.insiders.yml
|
||||
- ./github/workflows/build-docs.yml
|
||||
- ./github/workflows/deploy-docs.yml
|
||||
- .github/workflows/build-docs.yml
|
||||
- .github/workflows/deploy-docs.yml
|
||||
|
||||
build-docs:
|
||||
needs:
|
||||
|
@ -153,7 +153,7 @@ def label(
|
||||
|
||||
|
||||
def nulls_first(
|
||||
column: Union[_ColumnExpressionArgument[_T], _T]
|
||||
column: Union[_ColumnExpressionArgument[_T], _T],
|
||||
) -> UnaryExpression[_T]:
|
||||
return sqlalchemy.nulls_first(column) # type: ignore[arg-type]
|
||||
|
||||
|
@ -151,7 +151,7 @@ def label(
|
||||
|
||||
|
||||
def nulls_first(
|
||||
column: Union[_ColumnExpressionArgument[_T], _T]
|
||||
column: Union[_ColumnExpressionArgument[_T], _T],
|
||||
) -> UnaryExpression[_T]:
|
||||
return sqlalchemy.nulls_first(column) # type: ignore[arg-type]
|
||||
|
||||
|
@ -51,7 +51,7 @@ def coverage_run(*, module: str, cwd: Union[str, Path]) -> subprocess.CompletedP
|
||||
|
||||
|
||||
def get_testing_print_function(
|
||||
calls: List[List[Union[str, Dict[str, Any]]]]
|
||||
calls: List[List[Union[str, Dict[str, Any]]]],
|
||||
) -> Callable[..., Any]:
|
||||
def new_print(*args):
|
||||
data = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user