File: pyproject.toml

package info (click to toggle)
python-pytest-run-parallel 0.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 320 kB
  • sloc: python: 1,919; makefile: 3
file content (118 lines) | stat: -rw-r--r-- 2,576 bytes parent folder | download | duplicates (2)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[build-system]
requires = [
  "setuptools>=61.0.0",
]
build-backend = "setuptools.build_meta"

[project]
name = "pytest-run-parallel"
description = "A simple pytest plugin to run tests concurrently"
version = "0.6.1"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
    "pytest>=6.2.0",
]

authors = [
    { name = "Quansight Labs", email = "emargffoy@quansight.com" },
]
maintainers = [
    { name = "Quansight Labs", email = "emargffoy@quansight.com" },
]
license = {file = "LICENSE"}
classifiers = [
    "Framework :: Pytest",
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "Topic :: Software Development :: Testing",
    "Operating System :: OS Independent",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Python :: 3 :: Only",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: Implementation :: PyPy",
    "License :: OSI Approved :: MIT License",
]

[project.urls]
Repository = "https://github.com/Quansight-Labs/pytest-run-parallel"
[project.entry-points.pytest11]
run-parallel = "pytest_run_parallel.plugin"

[project.optional-dependencies]
psutil = [
    "psutil>=6.1.1",
]

[dependency-groups]
dev = [
    "pre-commit>=3.5.0",
    "coverage[toml]>=7.5",
    "pytest-order>=1.3.0",
    "ruff>=0.7.2",
    "tox>=4.23.2",
]

[tool.ruff]
exclude = ["docs/conf.py"]

[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]

[tool.tox]
env_list = ["py39", "py310", "py311", "py312", "py313", "py313t", "psutil", "pypy3", "ruff"]

[tool.tox.env_run_base]
deps = [
    "pytest>=6.2.0",
    "coverage[toml]>=7.5",
    "pytest-order",
    "check-manifest",
    "hypothesis>=6.135.33",
]
commands = [
    [
    "coverage",
    "run",
    "--source=pytest_run_parallel,tests",
    "-m",
    "pytest",
    "-v",
    "{posargs:tests}"
    ],
    [
    "coverage",
    "report",
    "-m"
    ],
    [
    "check-manifest",
    "-u",
    "-v",
    ]
]

[tool.tox.env.ruff]
skip_install = true
deps = ["ruff"]
commands = [["ruff", "check"]]

[tool.tox.env.psutil]
basepython = ["python3.13"]
description = "run tests with psutil installed"
extras = ["psutil"]


[tool.tox.gh.python]
"3.9" = ["py39"]
"3.10" = ["py310"]
"3.11" = ["py311"]
"3.12" = ["py312"]
"3.13" = ["py313", "psutil"]
"3.13t" = ["py313t"]
"pypy-3.9" = ["pypy3"]