generated from LizardByte/template-base
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 1.64 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lizardbyte-actions"
version = "0.0.0"
description = "Reusable actions for GitHub workflows."
readme = "README.md"
license = "MIT"
authors = [
{name = "LizardByte", email = "lizardbyte@users.noreply.github.com"}
]
dependencies = [
"lizardbyte-actions-facebook-post @ file:./actions/facebook_post",
"lizardbyte-actions-release-homebrew @ file:./actions/release_homebrew",
"lizardbyte-actions-release-setup @ file:./actions/release_setup",
]
[project.optional-dependencies]
dev = [
"pytest==9.0.2",
"pytest-cov==7.1.0",
]
[project.urls]
Homepage = "https://github.com/LizardByte/actions#readme"
Repository = "https://github.com/LizardByte/actions"
Issues = "https://github.com/LizardByte/actions/issues"
[tool.setuptools.packages.find]
include = ["actions*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-rxXs",
"--tb=native",
"--verbose",
"--color=yes",
"--cov=actions",
"--cov-report=term",
"--cov-report=xml:coverage/python-coverage.xml",
"--cov-report=json:coverage/python-coverage.json",
"--junitxml=junit-python.xml",
"-o", "junit_family=legacy",
]
[tool.coverage.run]
source = ["actions"]
omit = [
"*/tests/*",
"*/__pycache__/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"@abstractmethod",
]