File: pyproject.toml

package info (click to toggle)
python-pytest-retry 1.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208 kB
  • sloc: python: 658; makefile: 3
file content (48 lines) | stat: -rw-r--r-- 1,220 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
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.6.3"
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