-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
90 lines (80 loc) · 2.21 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
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
[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.2.1-dev"
readme = "README.rst"
requires-python = ">=3.8"
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.8",
"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"
[dependency-groups]
dev = [
"pre-commit>=3.5.0",
"pytest-cov>=5.0.0",
"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 = ["py38", "py39", "py310", "py311", "py312", "py313", "py313t", "pypy3", "ruff"]
[tool.tox.env_run_base]
deps = ["pytest>=6.2.0", "pytest-cov", "pytest-order"]
commands = [[
"pytest",
"-v",
"--cov-report", "lcov",
"--cov", "src/pytest_run_parallel",
"--cov", "tests",
"{posargs:tests}"
]]
[tool.tox.env.ruff]
skip_install = true
deps = ["ruff"]
commands = [["ruff", "check"]]
[tool.tox.gh.python]
"3.8" = ["py38"]
"3.9" = ["py39"]
"3.10" = ["py310"]
"3.11" = ["py311"]
"3.12" = ["py312"]
"3.13" = ["py313"]
"3.13t" = ["py313t"]
"pypy-3.8" = ["pypy3"]