Files
cellxgene-gateway/.pre-commit-config.yaml
2021-03-28 21:59:03 -04:00

25 lines
484 B
YAML

repos:
- repo: local
hooks:
- id: isort
name: isort
entry: isort
language: system
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]