forked from pytest-dev/pytest-asyncio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (62 loc) · 1.88 KB
/
setup.cfg
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
74
75
[metadata]
name = pytest-asyncio
version = attr: pytest_asyncio.__version__
url = https://github.com/pytest-dev/pytest-asyncio
project_urls =
Documentation = https://pytest-asyncio.readthedocs.io
Changelog = https://pytest-asyncio.readthedocs.io/en/latest/reference/changelog.html
Source Code = https://github.com/pytest-dev/pytest-asyncio
Bug Tracker = https://github.com/pytest-dev/pytest-asyncio/issues
description = Pytest support for asyncio
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Tin Tvrtković <[email protected]>
author_email = [email protected]
license = Apache 2.0
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Testing
Framework :: AsyncIO
Framework :: Pytest
Typing :: Typed
[options]
python_requires = >=3.8
packages = find:
include_package_data = True
# Always adjust requirements.txt and pytest-min-requirements.txt when changing runtime dependencies
install_requires =
pytest >= 7.0.0,<8
[options.extras_require]
testing =
coverage >= 6.2
hypothesis >= 5.7.1
docs =
sphinx >= 5.3
sphinx-rtd-theme >= 1.0
[options.entry_points]
pytest11 =
asyncio = pytest_asyncio.plugin
[coverage:run]
source = pytest_asyncio
branch = true
[coverage:report]
show_missing = true
[tool:pytest]
python_files = test_*.py *_example.py
addopts = -rsx --tb=short
testpaths = docs/source tests
asyncio_mode = auto
junit_family=xunit2
filterwarnings =
error
ignore:The event_loop fixture provided by pytest-asyncio has been redefined.*:DeprecationWarning
[flake8]
max-line-length = 88