Skip to content

Commit e786e4b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 86fdb25 commit e786e4b

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

Diff for: pyproject.toml

+15-16
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@ requires = [
88
name = "pytest-randomly"
99
version = "3.15.0"
1010
description = "Pytest plugin to randomly order tests and control random.seed."
11-
readme = {file = "README.rst", content-type = "text/x-rst"}
11+
readme = { file = "README.rst", content-type = "text/x-rst" }
1212
keywords = [
1313
"pytest",
1414
"random",
1515
"randomise",
1616
"randomize",
1717
"randomly",
1818
]
19-
license = {text = "MIT"}
20-
authors = [{name = "Adam Johnson", email = "[email protected]"}]
19+
license = { text = "MIT" }
20+
authors = [
21+
{ name = "Adam Johnson", email = "[email protected]" },
22+
]
2123
requires-python = ">=3.8"
2224
classifiers = [
2325
"Development Status :: 5 - Production/Stable",
@@ -34,19 +36,16 @@ classifiers = [
3436
"Typing :: Typed",
3537
]
3638
dependencies = [
37-
'importlib-metadata>=3.6; python_version < "3.10"',
39+
"importlib-metadata>=3.6; python_version<'3.10'",
3840
"pytest",
3941
]
40-
[project.urls]
41-
Changelog = "https://github.com/pytest-dev/pytest-randomly/blob/main/CHANGELOG.rst"
42-
Funding = "https://adamj.eu/books/"
43-
Repository = "https://github.com/pytest-dev/pytest-randomly"
44-
[project.entry-points.pytest11]
45-
randomly = "pytest_randomly"
46-
42+
urls.Changelog = "https://github.com/pytest-dev/pytest-randomly/blob/main/CHANGELOG.rst"
43+
urls.Funding = "https://adamj.eu/books/"
44+
urls.Repository = "https://github.com/pytest-dev/pytest-randomly"
45+
entry-points.pytest11.randomly = "pytest_randomly"
4746
[tool.isort]
4847
add_imports = [
49-
"from __future__ import annotations"
48+
"from __future__ import annotations",
5049
]
5150
force_single_line = true
5251
profile = "black"
@@ -61,14 +60,14 @@ addopts = """\
6160
branch = true
6261
parallel = true
6362
source = [
64-
"pytest_randomly",
65-
"tests",
63+
"pytest_randomly",
64+
"tests",
6665
]
6766

6867
[tool.coverage.paths]
6968
source = [
70-
"src",
71-
".tox/**/site-packages",
69+
"src",
70+
".tox/**/site-packages",
7271
]
7372

7473
[tool.coverage.report]

0 commit comments

Comments
 (0)