microsoft/hve-core

Public

mirrored from https://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
docs/transparency-note

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/skills/experimental/customer-card-render/pyproject.toml

43lines · modecode

1[project]
2name = "customer-card-render"
3version = "0.0.0"
4requires-python = ">=3.11"
5dependencies = []
6
7[dependency-groups]
8dev = [
9 "pytest>=9.0",
10 "pytest-cov>=7.0",
11 "pytest-mock>=3.14",
12 "ruff>=0.15",
13]
14# Atheris ships manylinux-only wheels; keep separate from dev so uv sync works on macOS.
15fuzz = [
16 "atheris>=3.0",
17]
18
19[tool.pytest.ini_options]
20testpaths = ["tests"]
21pythonpath = ["scripts"]
22python_files = ["test_*.py", "fuzz_harness.py"]
23markers = [
24 "integration: roundtrip integration tests",
25 "slow: tests that create full presentations",
26 "hypothesis: property-based tests using Hypothesis",
27]
28
29[tool.coverage.run]
30source = ["scripts"]
31
32[tool.coverage.report]
33fail_under = 85
34show_missing = true
35
36[tool.ruff]
37line-length = 88
38target-version = "py311"
39
40[tool.ruff.lint]
41select = ["E", "F", "I", "W"]
42
43
44