-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.19 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-retry"
version = "1.7.0"
description = "Adds the ability to retry flaky tests in CI environments"
readme = "README.md"
authors = [{ name = "str0zzapreti" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Framework :: Pytest",
]
keywords = ["rerun", "pytest", "flaky"]
dependencies = [
"pytest >= 7.0.0",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["black", "isort", "mypy", "flake8"]
[project.urls]
Homepage = "https://github.com/str0zzapreti/pytest-retry"
[project.entry-points.pytest11]
pytest-retry = "pytest_retry.retry_plugin"
[tool.pytest.ini_options]
addopts = "-p no:pytest-retry"
[tool.mypy]
python_version = "3.10"
cache_dir = "/dev/null"
disallow_untyped_defs = true
[tool.black]
line-length = 99
target-version = ['py310']
fast = true