Skip to content

Commit

Permalink
chore: pre-commit autoupdate (#163)
Browse files Browse the repository at this point in the history
updates:
- [github.com/pre-commit/mirrors-prettier: v2.7.1 → v3.0.0-alpha.0](pre-commit/mirrors-prettier@v2.7.1...v3.0.0-alpha.0)
- [github.com/codespell-project/codespell: v2.1.0 → v2.2.1](codespell-project/codespell@v2.1.0...v2.2.1)
- [github.com/psf/black: 22.6.0 → 22.8.0](psf/black@22.6.0...22.8.0)
- [github.com/pycqa/flake8.git: 5.0.2 → 5.0.4](https://github.com/pycqa/flake8.git/compare/5.0.2...5.0.4)
- [github.com/pycqa/pylint: v2.14.5 → v2.15.0](pylint-dev/pylint@v2.14.5...v2.15.0)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Sep 23, 2022
1 parent 7e23139 commit a986b49
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default_language_version:
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
# keep it before yamllint
rev: "v2.7.1"
rev: "v3.0.0-alpha.0"
hooks:
- id: prettier
additional_dependencies:
Expand All @@ -39,15 +39,15 @@ repos:
- id: debug-statements
language_version: python3
- repo: https://github.com/codespell-project/codespell
rev: v2.1.0
rev: v2.2.1
hooks:
- id: codespell
- repo: https://github.com/PyCQA/doc8
rev: v1.0.0
hooks:
- id: doc8
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.27.1
rev: v1.28.0
hooks:
- id: yamllint
files: \.(yaml|yml)$
Expand All @@ -61,12 +61,12 @@ repos:
# https://github.com/pre-commit/mirrors-isort/issues/9#issuecomment-624404082
- --filter-files
- repo: https://github.com/psf/black
rev: 22.6.0
rev: 22.8.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/pycqa/flake8.git
rev: 5.0.2
rev: 5.0.4
hooks:
- id: flake8
language_version: python3
Expand All @@ -93,7 +93,7 @@ repos:
- types-pkg_resources
- types-jsonschema>=4.4.9
- repo: https://github.com/pycqa/pylint
rev: v2.14.5
rev: v2.15.3
hooks:
- id: pylint
additional_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion test/test_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def test_install_galaxy_role(runtime_tmp: Runtime) -> None:
pathlib.Path(f"{runtime_tmp.project_dir}/meta/main.yml").touch()
# this should only raise a warning
runtime_tmp._install_galaxy_role(runtime_tmp.project_dir, role_name_check=1)
# this shoul test the bypass role name check path
# this should test the bypass role name check path
runtime_tmp._install_galaxy_role(runtime_tmp.project_dir, role_name_check=2)
# this should raise an error
with pytest.raises(
Expand Down

0 comments on commit a986b49

Please sign in to comment.