[tox]1requires =2tox >= 33envlist =4lint5py3136py3127py3118py310910[testenv]11description = Attempt to build and install the package12deps =13coverage14jsonschema15pytest16rstr17allowlist_externals = coverage18commands =19coverage run --source=sherlock_project --module pytest -v20coverage report --show-missing2122[testenv:offline]23deps =24jsonschema25pytest26commands =27pytest -v -m "not online"2829[testenv:lint]30description = Lint with Ruff31deps =32ruff33commands =34ruff check3536[gh-actions]37python =383.13: py313393.12: py312403.11: py311413.10: py310424344