-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
50 lines (44 loc) · 986 Bytes
/
pyproject.toml
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
[project]
name = "circuitpy-flight-software"
version = "2.0.0"
description = "Flight Software for the PROVES Kit"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"adafruit-circuitpython-typing==1.11.2",
"circuitpython-stubs==9.2.5",
"coverage==7.6.10",
"pre-commit==4.0.1",
"pytest==8.3.2",
]
[tool.ruff.format]
# Use `\n` line endings for all files
line-ending = "lf"
[tool.pytest.ini_options]
pythonpath = "."
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.coverage.run]
branch = true
relative_files = true
[tool.coverage.report]
show_missing = true
skip_covered = false
include = [
"lib/**/*.py",
"boot.py",
"main.py",
"repl.py",
"safemode.py",
]
omit = [
"lib/adafruit_*/**",
"lib/asyncio_*/**",
"lib/rv3028*/**",
"lib/neopixel.py",
]
[tool.coverage.html]
directory = ".coverage-reports/html"
[tool.coverage.xml]
output = ".coverage-reports/coverage.xml"