You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sherlock/tox.ini

44 lines
623 B

7 months ago
[tox]
requires =
tox >= 3
7 months ago
envlist =
lint
py313
py312
py311
py310
py39
py38
[testenv]
description = Attempt to build and install the package
deps =
coverage
jsonschema
pytest
allowlist_externals = coverage
7 months ago
commands =
5 months ago
coverage run --source=sherlock_project --module pytest -v
coverage report --show-missing
7 months ago
[testenv:offline]
deps =
jsonschema
pytest
commands =
pytest -v -m "not online"
7 months ago
[testenv:lint]
description = Lint with Ruff
deps =
ruff
commands =
ruff check
7 months ago
[gh-actions]
python =
7 months ago
3.12: py312
3.11: py311
3.10: py310
3.9: py39