Spaces:
Runtime error
Runtime error
File size: 1,111 Bytes
23072f6 2ffc0ff 23072f6 2ffc0ff 23072f6 2ffc0ff 23072f6 2ffc0ff 23072f6 a908fc5 2ffc0ff a908fc5 23072f6 a908fc5 2ffc0ff a908fc5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
repos:
- repo: local
hooks:
- id: isort
name: isort
stages: [commit]
language: system
entry: pipenv run isort py_code_analyzer app.py
types: [python]
- id: black
name: black
stages: [commit]
language: system
entry: pipenv run black py_code_analyzer app.py
types: [python]
- id: flake8
name: flake8
stages: [commit]
language: system
entry: pipenv run flake8 py_code_analyzer app.py
types: [python]
- id: mypy
name: mypy
stages: [commit]
language: system
entry: pipenv run mypy py_code_analyzer app.py
types: [python]
pass_filenames: false
# - id: pytest
# name: pytest
# stages: [commit]
# language: system
# entry: pipenv run pytest tests
# types: [python]
# - id: pytest-cov
# name: pytest
# stages: [push]
# language: system
# entry: pipenv run pytest --cov tests
# types: [python]
# pass_filenames: false
|