File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 - id : end-of-file-fixer
66 - id : trailing-whitespace
77 - repo : https://github.com/python-jsonschema/check-jsonschema
8- rev : 0.37.2
8+ rev : 0.37.3
99 hooks :
1010 - id : check-github-workflows
1111 args : ["--verbose"]
@@ -19,11 +19,11 @@ repos:
1919 hooks :
2020 - id : tox-toml-fmt
2121 - repo : https://github.com/tox-dev/pyproject-fmt
22- rev : " v2.23.0 "
22+ rev : " v2.24.1 "
2323 hooks :
2424 - id : pyproject-fmt
2525 - repo : https://github.com/astral-sh/ruff-pre-commit
26- rev : " v0.15.16 "
26+ rev : " v0.15.17 "
2727 hooks :
2828 - id : ruff-format
2929 - id : ruff-check
4343 - mdformat-gfm>=1
4444 - mdformat-ruff>=0.1.3
4545 - repo : https://github.com/LilSpazJoekp/docstrfmt
46- rev : v2.1.0
46+ rev : v2.1.1
4747 hooks :
4848 - id : docstrfmt
4949 args : ["-l", "120"]
Original file line number Diff line number Diff line change 2929)
3030
3131
32- @pytest .fixture (autouse = True )
32+ @pytest .fixture (autouse = True ) # noqa: RUF076
3333def _fix_os_pathsep (mocker : MockerFixture ) -> None :
3434 """If we're not running on macOS, set `os.pathsep` to what it should be on macOS."""
3535 if sys .platform != "darwin" : # pragma: darwin no cover
Original file line number Diff line number Diff line change 1818 from pytest_mock import MockerFixture
1919
2020
21- @pytest .fixture (autouse = True )
21+ @pytest .fixture (autouse = True ) # noqa: RUF076
2222def _reload_after_test () -> typing .Iterator [None ]:
2323 yield
2424 importlib .reload (unix )
Original file line number Diff line number Diff line change 4242_COMMON = os .path .normpath (_WIN_FOLDERS ["CSIDL_COMMON_APPDATA" ])
4343
4444
45- @pytest .fixture (autouse = True )
45+ @pytest .fixture (autouse = True ) # noqa: RUF076
4646def _mock_get_win_folder (mocker : MockerFixture ) -> None :
4747 mocker .patch ("platformdirs.windows.get_win_folder" , side_effect = lambda csidl : _WIN_FOLDERS [csidl ])
4848
You can’t perform that action at this time.
0 commit comments