Skip to content

Commit

Permalink
Merge da33e36 into 74fb12c
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Aug 1, 2022
2 parents 74fb12c + da33e36 commit f8ab606
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ exclude: ^$

repos:
- repo: https://github.com/repo-helper/pyproject-parser
rev: v0.6.1
rev: v0.7.0
hooks:
- id: reformat-pyproject

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
rev: v4.3.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -30,7 +30,7 @@ repos:
- id: end-of-file-fixer

- repo: https://github.com/domdfcoding/pre-commit-hooks
rev: v0.3.0
rev: v0.4.0
hooks:
- id: requirements-txt-sorter
args:
Expand All @@ -40,13 +40,13 @@ repos:
- id: bind-requirements

- repo: https://github.com/domdfcoding/flake8-dunder-all
rev: v0.2.1
rev: v0.2.2
hooks:
- id: ensure-dunder-all
files: ^repo_helper_pycharm/.*\.py$

- repo: https://github.com/domdfcoding/flake2lint
rev: v0.4.1
rev: v0.4.2
hooks:
- id: flake2lint

Expand All @@ -59,15 +59,15 @@ repos:
- id: rst-inline-touching-normal

- repo: https://github.com/asottile/pyupgrade
rev: v2.12.0
rev: v2.37.3
hooks:
- id: pyupgrade
args:
- --py36-plus
- --keep-runtime-typing

- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.2.0
rev: v1.3.0
hooks:
- id: remove-crlf
- id: forbid-crlf
Expand All @@ -84,7 +84,7 @@ repos:
exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$

- repo: https://github.com/domdfcoding/dep_checker
rev: v0.6.2
rev: v0.7.0
hooks:
- id: dep_checker
args:
Expand Down
30 changes: 15 additions & 15 deletions tests/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ def test_pycharm_schema_back(

@abstractmethod
def run_test( # noqa: MAN001
self,
tmp_pathplus: PathPlus,
advanced_file_regression: AdvancedFileRegressionFixture,
capsys,
) -> None:
self,
tmp_pathplus: PathPlus,
advanced_file_regression: AdvancedFileRegressionFixture,
capsys,
) -> None:
raise NotImplementedError


Expand All @@ -99,11 +99,11 @@ def test_pycharm_schema_not_project(self, no_idea: str, tmp_pathplus: PathPlus)
assert not result.stdout

def run_test( # noqa: MAN001
self,
tmp_pathplus: PathPlus,
advanced_file_regression: AdvancedFileRegressionFixture,
capsys,
) -> None:
self,
tmp_pathplus: PathPlus,
advanced_file_regression: AdvancedFileRegressionFixture,
capsys,
) -> None:
(tmp_pathplus / ".idea").maybe_make()

with in_directory(tmp_pathplus):
Expand All @@ -122,11 +122,11 @@ def test_pycharm_schema_not_project(self, tmp_pathplus: PathPlus, no_idea: str):
register_schema(tmp_pathplus)

def run_test( # noqa: MAN001
self,
tmp_pathplus: PathPlus,
advanced_file_regression: AdvancedFileRegressionFixture,
capsys,
) -> None:
self,
tmp_pathplus: PathPlus,
advanced_file_regression: AdvancedFileRegressionFixture,
capsys,
) -> None:
(tmp_pathplus / ".idea").maybe_make()
register_schema(tmp_pathplus)
self.check_output(tmp_pathplus, advanced_file_regression, capsys.readouterr().out)

0 comments on commit f8ab606

Please sign in to comment.