File tree Expand file tree Collapse file tree 4 files changed +24
-24
lines changed Expand file tree Collapse file tree 4 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 1919
2020 # Ruff replaces black, flake8, autoflake and isort
2121 - 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
2323 hooks :
2424 - id : ruff
2525 args : [--config, ./pyproject.toml]
Original file line number Diff line number Diff line change 44
55| Project | | Status |
66| --------- | :-- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
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) |
88| 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) |
99| Package | | [](https://badge.fury.io/py/pytest-databases)  |
1010| 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:
4040 subprocess .run (["make" , "docs" ], check = True ) # noqa: S607
4141
4242 output_path = Path (output_dir )
43- output_path .mkdir ()
43+ output_path .mkdir (parents = True , exist_ok = True )
4444 output_path .joinpath (".nojekyll" ).touch (exist_ok = True )
4545 output_path .joinpath ("index.html" ).write_text (REDIRECT_TEMPLATE .format (target = "latest" ))
4646
You can’t perform that action at this time.
0 commit comments