-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 755 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 755 Bytes
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
[project]
name = "quickbake"
version = "0.9.0"
description = "Python environment for testing and linting plugin code"
requires-python = ">=3.12"
dependencies = [
"coverage>=7.13.2",
"fake-bpy-module>=20260128",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.14",
]
[tool.ruff.lint]
extend-select = ["I"]
ignore = ["F401", "I001"]
[tool.ruff.format]
# bpy specifies this https://docs.blender.org/api/current/info_best_practice.html#style-conventions
quote-style = "double"
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = "--cov=src --cov-branch --cov-fail-under=100"
[tool.coverage.run]
branch = false
source = ["src"]
[tool.coverage.paths]
source = ["src"]
[tool.coverage.report]
show_missing = true
fail_under = 100