xref: /xnu-10063.141.1/tools/lldbmacros/tox.ini (revision d8b80295118ef25ac3a784134bcf95cd8e88109f)
1[tox]
2isolated_build = true
3envlist = lint
4setupdir = python
5
6[testenv:lint]
7allowlist_externals = /usr/bin/env
8description = lint Python source code
9deps =
10    ruff
11# Just opt-in a single macro library for now.
12commands =
13    /usr/bin/env CDTE_LINT=ruff {envbindir}/python -m ruff check recount.py
14