Files
pydantic/setup.cfg
T
Samuel Colvin f3a278bb8d Dataclasses (#269)
* pydantic.dataclasses.dataclass decorator

* add dataclasses to requirnment.txt

* reimplement dataclasses

* fix linting, fix coverage

* docs
2018-10-01 09:48:28 +01:00

29 lines
432 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