Files
cellxgene-gateway/.pre-commit-config.yaml
2019-08-27 16:14:10 -04:00

31 lines
608 B
YAML

repos:
- repo: local
hooks:
- id: isort
name: isort
entry: isort
language: system
types: [python]
stages: [commit]
- id: flake8
name: flake8
language: system
entry: flake8
types: [python]
stages: [commit]
- id: black
language_version: python3.6+
name: black
language: system
entry: black
types: [python]
stages: [commit]
- id: pytest
name: pytest
language: system
entry: pytest
types: [python]
pass_filenames: false
always_run: true
stages: [push]