mirror of https://github.com/tqdm/tqdm.git
43 lines
966 B
YAML
43 lines
966 B
YAML
|
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:
|
||
|
- id: metadata
|
||
|
name: Check metadata
|
||
|
language: system
|
||
|
entry: make testsetup
|
||
|
pass_filenames: false
|
||
|
- id: pytest
|
||
|
name: pytest quick
|
||
|
entry: pytest
|
||
|
args: ['-qq', '--durations=1', '-k=not slow']
|
||
|
pass_filenames: false
|
||
|
types: [python]
|
||
|
language: python
|
||
|
additional_dependencies:
|
||
|
- numpy
|
||
|
- pandas
|
||
|
- pytest-timeout
|
||
|
- pytest-asyncio
|
||
|
- repo: https://gitlab.com/pycqa/flake8
|
||
|
rev: 3.8.4
|
||
|
hooks:
|
||
|
- id: flake8
|