🔧 Keep excluding migrations

This commit is contained in:
Nikolai R Kristiansen 2022-08-15 19:21:33 +02:00
parent 849a55451d
commit e3cc899966
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ repos:
rev: 22.3.0
hooks:
- id: black
exclude: migrations/
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
hooks:

View File

@ -42,7 +42,7 @@ commands = {posargs:py.test --cov=graphene_django graphene_django examples}
basepython = python3.9
deps = -e.[dev]
commands =
black graphene_django examples setup.py --check
black --exclude "/migrations/" graphene_django examples setup.py --check
[testenv:flake8]
basepython = python3.9