Merge pull request #92 from qurator-spk/update-pre-commit

Update pre commit
pull/93/head
Mike Gerber 1 year ago committed by GitHub
commit 05b5502c57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,8 +1,6 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
@ -13,17 +11,26 @@ repos:
- id: check-ast
- repo: https://github.com/psf/black
rev: 22.10.0
rev: 23.10.0
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.280
rev: v0.1.1
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- args:
- --fix
- --exit-non-zero-on-fix
id: ruff
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.4.1
rev: v1.6.1
hooks:
- id: mypy
- additional_dependencies:
- types-setuptools
id: mypy
- repo: https://gitlab.com/vojko.pribudic/pre-commit-update
rev: v0.1.0
hooks:
- id: pre-commit-update

@ -10,6 +10,7 @@ pytest
```
## Test running examples
Only unit tests:
```bash
pytest -m "not integration"
@ -36,7 +37,7 @@ pytest -k "not test" --mypy
pytest -k "not test" --ruff
```
## How to use pre-commit
# How to use pre-commit
This project optionally uses [pre-commit](https://pre-commit.com) to check commits. To use it:

Loading…
Cancel
Save