Files
pydantic/setup.cfg
T
Samuel Colvin 15850a43c5 moving to black (#287)
* moving to black

* put back flake8

* remove isort option

* putting back isort

* uprev pycodestyle

* remove black from docs/examples

* tweak parse.py
2018-11-15 11:30:07 +00:00

33 lines
522 B
INI

[tool:pytest]
testpaths = tests
addopts = --isort
timeout = 10
filterwarnings = ignore
[flake8]
max-line-length = 120
max-complexity = 10
[bdist_wheel]
python-tag = py36
[coverage:run]
source = pydantic
branch = True
[coverage:report]
precision = 2
exclude_lines =
pragma: no cover
raise NotImplementedError
raise NotImplemented
[isort]
line_length=120
known_first_party=pydantic
known_standard_library=dataclasses
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
combine_as_imports=True