2021-01-09 16:20:22 +00:00
|
|
|
default_language_version:
|
|
|
|
python: python3
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
|
|
rev: v3.4.0
|
|
|
|
hooks:
|
|
|
|
- id: check-added-large-files
|
|
|
|
- id: check-case-conflict
|
|
|
|
- id: check-docstring-first
|
|
|
|
- id: check-executables-have-shebangs
|
|
|
|
- id: check-toml
|
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: check-yaml
|
|
|
|
- id: debug-statements
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: mixed-line-ending
|
|
|
|
- id: sort-simple-yaml
|
|
|
|
- id: trailing-whitespace
|
|
|
|
exclude: ^README.rst$
|
|
|
|
- repo: local
|
|
|
|
hooks:
|
2021-01-09 17:07:27 +00:00
|
|
|
- id: todo
|
|
|
|
name: Check TODO
|
|
|
|
language: pygrep
|
|
|
|
entry: WIP
|
2021-01-11 19:18:09 +00:00
|
|
|
args: [-i]
|
2021-01-09 17:07:27 +00:00
|
|
|
types: [text]
|
|
|
|
exclude: ^(.pre-commit-config.yaml|.github/workflows/test.yml)$
|
2021-01-09 16:20:22 +00:00
|
|
|
- id: pytest
|
|
|
|
name: pytest quick
|
2021-01-11 19:18:09 +00:00
|
|
|
language: python
|
2021-01-09 16:20:22 +00:00
|
|
|
entry: pytest
|
|
|
|
args: ['-qq', '--durations=1', '-k=not slow']
|
|
|
|
types: [python]
|
2021-01-11 19:18:09 +00:00
|
|
|
pass_filenames: false
|
2021-01-09 16:20:22 +00:00
|
|
|
additional_dependencies:
|
|
|
|
- numpy
|
|
|
|
- pandas
|
|
|
|
- pytest-timeout
|
|
|
|
- pytest-asyncio
|
|
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
|
|
rev: 3.8.4
|
|
|
|
hooks:
|
|
|
|
- id: flake8
|
2021-01-11 19:18:09 +00:00
|
|
|
args: ['-j8']
|
2021-01-09 16:50:30 +00:00
|
|
|
additional_dependencies:
|
|
|
|
- flake8-bugbear
|
|
|
|
- flake8-comprehensions
|
|
|
|
- flake8-debugger
|
|
|
|
- flake8-string-format
|
2021-01-09 17:00:01 +00:00
|
|
|
- repo: https://github.com/PyCQA/isort
|
|
|
|
rev: 5.7.0
|
|
|
|
hooks:
|
|
|
|
- id: isort
|
2021-03-08 23:54:13 +00:00
|
|
|
- repo: https://github.com/kynan/nbstripout
|
2021-03-09 15:43:20 +00:00
|
|
|
rev: 0.3.9
|
2021-03-08 23:54:13 +00:00
|
|
|
hooks:
|
|
|
|
- id: nbstripout
|
|
|
|
args: ['--keep-count', '--keep-output']
|