File tree 4 files changed +24
-24
lines changed
4 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 19
19
20
20
# Ruff replaces black, flake8, autoflake and isort
21
21
- repo : https://github.com/charliermarsh/ruff-pre-commit
22
- rev : " v0.11.7 " # make sure this is always consistent with hatch configs
22
+ rev : " v0.11.8 " # make sure this is always consistent with hatch configs
23
23
hooks :
24
24
- id : ruff
25
25
args : [--config, ./pyproject.toml]
Original file line number Diff line number Diff line change 4
4
5
5
| Project | | Status |
6
6
| --------- | :-- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
7
- | CI/CD | | [](https://github.com/litestar-org/pytest-databases/actions/workflows/release.yaml) [](https://github.com/litestar-org/pytest-databases/actions/workflows/ci.yaml) [](https://github.com/litestar-org/pytest-databases/actions/workflows/docs.yml) |
7
+ | CI/CD | | [](https://github.com/litestar-org/pytest-databases/actions/workflows/release.yaml) [](https://github.com/litestar-org/pytest-databases/actions/workflows/ci.yaml) [](https://github.com/litestar-org/pytest-databases/actions/workflows/docs.yml) |
8
8
| Quality | | [](https://codecov.io/github/litestar-org/pytest-databases) [](https://sonarcloud.io/summary/new_code?id=litestar-org_pytest-databases) [](https://sonarcloud.io/summary/new_code?id=litestar-org_pytest-databases) [](https://sonarcloud.io/summary/new_code?id=litestar-org_pytest-databases) [](https://sonarcloud.io/summary/new_code?id=litestar-org_pytest-databases) |
9
9
| Package | | [](https://badge.fury.io/py/pytest-databases)  |
10
10
| Community | | [](https://discord.gg/litestar-919193495116337154) [](https://matrix.to/#/#litestar:matrix.org) [](https://blog.litestar.dev) [](https://twitter.com/LitestarAPI) [](https://blog.litestar.dev) |
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def build(output_dir: str) -> None:
40
40
subprocess .run (["make" , "docs" ], check = True ) # noqa: S607
41
41
42
42
output_path = Path (output_dir )
43
- output_path .mkdir ()
43
+ output_path .mkdir (parents = True , exist_ok = True )
44
44
output_path .joinpath (".nojekyll" ).touch (exist_ok = True )
45
45
output_path .joinpath ("index.html" ).write_text (REDIRECT_TEMPLATE .format (target = "latest" ))
46
46
You can’t perform that action at this time.
0 commit comments