From b22818107ae63c4120c2ae166f12423d3464463d Mon Sep 17 00:00:00 2001 From: Alexander Petree Date: Thu, 10 Oct 2024 03:06:30 -0700 Subject: [PATCH] Update tox.ini --- tox.ini | 40 +++++++++++----------------------------- 1 file changed, 11 insertions(+), 29 deletions(-) diff --git a/tox.ini b/tox.ini index 0c1821536..60441b2d0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,15 +1,7 @@ [tox] -requires = - tox >= 3 -envlist = - lint - py313 - py312 - py311 - py310 - py39 - py38 - +requires = tox >= 3 +envlist = lint py313 py312 + py311 py310 py39 py38 [testenv] description = Attempt to build and install the package deps = @@ -20,25 +12,15 @@ allowlist_externals = coverage commands = coverage run --source=sherlock_project --module pytest -v coverage report --show-missing - [testenv:offline] -deps = - jsonschema - pytest -commands = - pytest -v -m "not online" - +deps = jsonschema + pytest commands = pytest -v +-m "not online" [testenv:lint] description = Lint with Ruff -deps = - ruff -commands = - ruff check - +deps = ruff +commands = ruff check [gh-actions] -python = - 3.12: py312 - 3.11: py311 - 3.10: py310 - 3.9: py39 - 3.8: py38 +python = 3.12: py312 + 3.11: py311 3.10: py310 + 3.9: py39 3.8: py38