File: pytest.ini

package info (click to toggle)
jaraco.classes 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 164 kB
  • sloc: python: 187; sh: 7; makefile: 3
file content (22 lines) | stat: -rw-r--r-- 524 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[pytest]
norecursedirs=dist build .tox .eggs
addopts=--doctest-modules
filterwarnings=
	## upstream

	# Ensure ResourceWarnings are emitted
	default::ResourceWarning

	# realpython/pytest-mypy#152
	ignore:'encoding' argument not specified::pytest_mypy

	# python/cpython#100750
	ignore:'encoding' argument not specified::platform

	# pypa/build#615
	ignore:'encoding' argument not specified::build.env

	# dateutil/dateutil#1284
	ignore:datetime.datetime.utcfromtimestamp:DeprecationWarning:dateutil.tz.tz

	## end upstream