2023-08-10 08:23:19 -07:00
[ tool . pytest . ini_options ]
minversion = "6.0"
2023-12-20 15:22:48 -08:00
addopts = "--ignore=openpilot/ --ignore=cereal/ --ignore=opendbc/ --ignore=panda/ --ignore=rednose_repo/ --ignore=tinygrad_repo/ --ignore=teleoprtc_repo/ -Werror --strict-config --strict-markers --durations=10 -n auto --dist=loadgroup"
2023-11-13 10:45:24 -08:00
cpp_files = "test_*"
2023-11-22 13:45:49 -08:00
cpp_harness = "selfdrive/test/cpp_harness.py"
2023-08-10 08:23:19 -07:00
python_files = "test_*.py"
2023-08-28 10:26:19 -07:00
#timeout = "30" # you get this long by default
2023-08-29 17:04:42 -07:00
markers = [
2023-11-07 20:35:44 -05:00
"slow: tests that take awhile to run and can be skipped with -m 'not slow'" ,
"tici: tests that are only meant to run on the C3/C3X" ,
2023-08-29 17:04:42 -07:00
]
2023-09-05 18:52:40 -07:00
testpaths = [
"common" ,
"selfdrive/athena" ,
"selfdrive/boardd" ,
"selfdrive/car" ,
"selfdrive/controls" ,
"selfdrive/locationd" ,
"selfdrive/monitoring" ,
2023-12-14 16:59:28 -08:00
"selfdrive/navd/tests" ,
2023-09-05 18:52:40 -07:00
"selfdrive/thermald" ,
"selfdrive/test/longitudinal_maneuvers" ,
2023-12-18 14:38:57 -08:00
"selfdrive/test/process_replay/test_fuzzy.py" ,
2023-09-05 18:52:40 -07:00
"system/hardware/tici" ,
"system/loggerd" ,
2023-09-11 14:01:50 -07:00
"system/proclogd" ,
2023-09-05 18:52:40 -07:00
"system/tests" ,
"system/ubloxd" ,
2023-12-01 21:13:37 -08:00
"system/webrtc" ,
2023-09-11 14:01:50 -07:00
"tools/lib/tests" ,
"tools/replay" ,
"tools/cabana"
2023-09-05 18:52:40 -07:00
]
2023-08-10 08:23:19 -07:00
2023-08-20 21:08:04 -07:00
[ tool . mypy ]
python_version = "3.11"
plugins = [
"numpy.typing.mypy_plugin" ,
]
exclude = [
"body/" ,
"cereal/" ,
"opendbc/" ,
"panda/" ,
"rednose/" ,
"rednose_repo/" ,
"tinygrad/" ,
"tinygrad_repo/" ,
2023-12-01 21:13:37 -08:00
"teleoprtc/" ,
"teleoprtc_repo/" ,
2023-08-20 21:08:04 -07:00
"third_party/" ,
]
# third-party packages
ignore_missing_imports = true
# helpful warnings
warn_redundant_casts = true
warn_unreachable = true
warn_unused_ignores = true
# restrict dynamic typing
warn_return_any = true
2022-10-21 16:23:56 -07:00
[ tool . poetry ]
name = "openpilot"
version = "0.1.0"
description = "an open source driver assistance system"
authors = [ "Vehicle Researcher <user@comma.ai>" ]
license = "MIT"
readme = "README.md"
repository = "https://github.com/commaai/openpilot"
documentation = "https://docs.comma.ai"
[ tool . poetry . dependencies ]
2023-07-20 21:56:57 -07:00
python = "~3.11"
2023-07-26 23:08:23 -07:00
aiohttp = "*"
aiortc = "*"
2023-06-21 22:14:20 +02:00
casadi = "==3.6.3"
2023-07-24 19:01:09 -07:00
cffi = "*"
crcmod = "*"
Cython = "*"
future-fstrings = "*" # for acados
json-rpc = "*"
libusb1 = "*"
2023-08-17 15:36:14 -07:00
numpy = "*"
2023-07-24 19:01:09 -07:00
onnx = ">=1.14.0"
2023-09-28 22:32:21 -07:00
onnxruntime = { version = ">=1.15.1" , platform = "linux" , markers = "platform_machine == 'aarch64'" }
2023-07-24 19:01:09 -07:00
onnxruntime-gpu = { version = ">=1.15.1" , platform = "linux" , markers = "platform_machine == 'x86_64'" }
psutil = "*"
2023-07-26 23:08:23 -07:00
pyaudio = "*"
2023-07-24 19:01:09 -07:00
pycapnp = "*"
pycryptodome = "*"
PyJWT = "*"
pyserial = "*"
pyzmq = "*"
requests = "*"
scons = "*"
2023-08-11 20:05:44 -07:00
sentry-sdk = "==1.28.1" # needs to be updated with AGNOS
2023-07-24 19:01:09 -07:00
smbus2 = "*"
sounddevice = "*"
spidev = { version = "*" , platform = "linux" }
sympy = "*"
websocket_client = "*"
2022-10-21 16:23:56 -07:00
2023-12-16 18:52:15 -08:00
# these should be removed
markdown-it-py = "*"
timezonefinder = "*"
setproctitle = "*"
2022-10-21 16:23:56 -07:00
[ tool . poetry . group . dev . dependencies ]
2023-07-24 19:01:09 -07:00
av = "*"
2023-08-25 14:01:10 -07:00
azure-identity = "*"
azure-storage-blob = "*"
2023-07-24 19:01:09 -07:00
breathe = "*"
2023-12-16 18:52:15 -08:00
control = "*"
2023-07-24 19:01:09 -07:00
coverage = "*"
dictdiffer = "*"
ft4222 = "*"
2023-09-21 17:40:14 -07:00
hypothesis = "~6.47"
2023-07-24 19:01:09 -07:00
inputs = "*"
2023-12-16 18:52:15 -08:00
Jinja2 = "*"
2023-07-24 19:01:09 -07:00
lru-dict = "*"
matplotlib = "*"
2023-10-02 13:18:03 -07:00
metadrive-simulator = { git = "https://github.com/metadriverse/metadrive.git" , rev = "72e842cd1d025bf676e4af8797a01e4aa282109f" , markers = "platform_machine != 'aarch64'" } # no linux/aarch64 wheels for certain dependencies
2023-07-24 19:01:09 -07:00
mpld3 = "*"
mypy = "*"
myst-parser = "*"
natsort = "*"
2023-08-11 20:05:44 -07:00
opencv-python-headless = "*"
2023-07-24 19:01:09 -07:00
parameterized = "^0.8"
pprofile = "*"
2023-12-17 16:37:33 -08:00
polyline = "*"
2023-07-24 19:01:09 -07:00
pre-commit = "*"
2023-12-17 16:37:33 -08:00
pyopencl = "*"
2023-07-24 19:01:09 -07:00
pygame = "*"
pyprof2calltree = "*"
pytest = "*"
2023-08-21 20:51:27 -07:00
pytest-cov = "*"
2023-09-11 14:01:50 -07:00
pytest-cpp = "*"
2023-08-22 14:31:03 -07:00
pytest-subtests = "*"
2023-07-24 19:01:09 -07:00
pytest-xdist = "*"
2023-08-28 10:26:19 -07:00
pytest-timeout = "*"
pytest-timeouts = "*"
2023-12-09 14:28:32 -08:00
pytest-randomly = "*"
2023-09-17 15:44:03 -07:00
ruff = "*"
2023-07-24 19:01:09 -07:00
sphinx = "*"
sphinx-rtd-theme = "*"
sphinx-sitemap = "*"
tabulate = "*"
tenacity = "*"
types-requests = "*"
types-tabulate = "*"
2023-12-16 18:52:15 -08:00
tqdm = "*"
2023-10-18 20:18:08 -07:00
# this is only pinned since 5.15.11 is broken
pyqt5 = { version = "==5.15.2" , markers = "platform_machine == 'x86_64'" } # no aarch64 wheels for macOS/linux
2022-10-21 16:23:56 -07:00
[ build-system ]
requires = [ "poetry-core" ]
build-backend = "poetry.core.masonry.api"
2023-08-09 13:26:54 -07:00
# https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
[ tool . ruff ]
2023-09-16 15:11:09 -07:00
select = [ "E" , "F" , "W" , "PIE" , "C4" , "ISC" , "RUF008" , "RUF100" , "A" , "B" , "TID251" ]
2023-12-09 13:24:18 -08:00
ignore = [ "E741" , "E402" , "C408" , "ISC003" , "B027" , "B024" ]
2023-08-09 13:26:54 -07:00
line-length = 160
2023-08-09 16:45:09 -07:00
target-version = "py311"
exclude = [
"panda" ,
"opendbc" ,
"rednose_repo" ,
"tinygrad_repo" ,
2023-12-01 21:13:37 -08:00
"teleoprtc" ,
2023-12-06 15:33:17 -08:00
"teleoprtc_repo" ,
2023-08-09 16:45:09 -07:00
"third_party" ,
]
2023-08-10 16:43:39 -07:00
flake8-implicit-str-concat . allow-multiline = false
2023-09-08 10:43:02 -07:00
[ tool . ruff . flake8-tidy-imports . banned-api ]
"selfdrive" . msg = "Use openpilot.selfdrive"
"common" . msg = "Use openpilot.common"
"system" . msg = "Use openpilot.system"
"third_party" . msg = "Use openpilot.third_party"
2023-09-16 15:11:09 -07:00
"tools" . msg = "Use openpilot.tools"
2023-11-10 10:02:05 -08:00
[ tool . coverage . run ]
2023-12-09 13:24:18 -08:00
concurrency = [ "multiprocessing" , "thread" ]