summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/third_party/pytest-asyncio/setup.cfg
blob: 85e3fdb32351086d0bfa61b606740ef56392a299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[metadata]
name = pytest-asyncio
version = attr: pytest_asyncio.__version__
url = https://github.com/pytest-dev/pytest-asyncio
project_urls = 
	GitHub = https://github.com/pytest-dev/pytest-asyncio
description = Pytest support for asyncio
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Tin Tvrtković <tinchester@gmail.com>
author_email = tinchester@gmail.com
license = Apache 2.0
license_file = LICENSE
classifiers = 
	Development Status :: 4 - Beta
	
	Intended Audience :: Developers
	
	License :: OSI Approved :: Apache Software License
	
	Programming Language :: Python :: 3.7
	Programming Language :: Python :: 3.8
	Programming Language :: Python :: 3.9
	Programming Language :: Python :: 3.10
	Programming Language :: Python :: 3.11
	
	Topic :: Software Development :: Testing
	
	Framework :: AsyncIO
	Framework :: Pytest
	Typing :: Typed

[options]
python_requires = >=3.7
packages = find:
include_package_data = True
install_requires = 
	pytest >= 6.1.0
	typing-extensions >= 3.7.2; python_version < "3.8"

[options.extras_require]
testing = 
	coverage >= 6.2
	hypothesis >= 5.7.1
	flaky >= 3.5.0
	mypy >= 0.931
	pytest-trio >= 0.7.0

[options.entry_points]
pytest11 = 
	asyncio = pytest_asyncio.plugin

[coverage:run]
source = pytest_asyncio
branch = true

[coverage:report]
show_missing = true

[tool:pytest]
addopts = -rsx --tb=short
testpaths = tests
asyncio_mode = auto
junit_family = xunit2
filterwarnings = error

[flake8]
max-line-length = 88

[egg_info]
tag_build = 
tag_date = 0