1[pytest]
2norecursedirs=dist build .tox .eggs
3addopts=--doctest-modules
4doctest_optionflags=ALLOW_UNICODE ELLIPSIS
5# workaround for warning pytest-dev/pytest#6178
6junit_family=xunit2
7filterwarnings=
8	# Suppress deprecation warning in flake8
9	ignore:SelectableGroups dict interface is deprecated::flake8
10	# Suppress deprecation warning in pypa/packaging#433
11	ignore:The distutils package is deprecated::packaging.tags
12	# suppress known warnings
13	ignore:Use native division:DeprecationWarning:tempora
14	ignore:Use dateutil.parser:DeprecationWarning:tempora
15