-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.73 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "testshed"
description = "🛠️ PyTest's tool shed: Docker up, Playwright on, cleanup done"
requires-python = ">=3.11"
authors = [{ name = "Dov Benyomin Sohacheski", email = "b@kloud.email" }]
license = "MIT"
keywords = ["pytest", "docker", "fixtures", "playwright", "testing"]
classifiers = [
"Framework :: Pytest",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = [
"playwright>=1.58.0,<2.0.0",
"pytest>=9.0.2",
"python-on-whales>=0.80.0,<1.0.0",
"PyYAML>=6.0.3,<7.0.0",
"requests>=2.32.5,<3.0.0",
]
dynamic = ["readme", "version"]
[project.urls]
"Homepage" = "https://github.com/kloudkit/testshed"
"Bug Tracker" = "https://github.com/kloudkit/testshed/issues"
"Source Code" = "https://github.com/kloudkit/testshed"
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"ruff>=0.15.5",
"coverage>=7.13.4",
"pytest-cov>=7.0.0",
]
[project.entry-points.pytest11]
testshed = "kloudkit.testshed.plugin"
[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown" }
version = { attr = "kloudkit.testshed.__version__" }
[tool.coverage.run]
source = ["kloudkit.testshed"]
omit = [
"*/tests/*",
"*/__pycache__/*",
"*/venv/*",
"*/.venv/*"
]
[tool.coverage.report]
exclude_lines = [
"@(abc\\.)?abstractmethod",
"# pragma: no cover",
"if __name__ == .__main__.:",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError"
]
show_missing = true
precision = 2
fail_under = 80
[tool.coverage.html]
directory = "htmlcov"