florim/MedGPT
2
1repos:2 - repo: https://github.com/pre-commit/pre-commit-hooks3 rev: v0.9.24 hooks:5 - id: check-added-large-files6 args: ['--maxkb=500']7 - id: check-byte-order-marker8 - id: check-case-conflict9 - id: check-merge-conflict10 - id: check-symlinks11 - id: debug-statements12 13 - repo: https://github.com/pycqa/isort14 rev: 5.12.015 hooks:16 - id: isort17 language_version: python3.1018 19 - repo: https://github.com/psf/black20 rev: 23.3.021 hooks:22 - id: black23 language_version: python3.1024 25 - repo: local26 hooks:27 - id: pytest-check28 name: pytest-check29 entry: pytest --cov=autogpt --without-integration --without-slow-integration30 language: system31 pass_filenames: false32 always_run: true33 