mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-25 05:10:19 +00:00
25 lines
330 B
INI
25 lines
330 B
INI
[tox]
|
|
requires =
|
|
tox >= 4
|
|
envlist =
|
|
lint
|
|
py313
|
|
py312
|
|
py311
|
|
py310
|
|
py39
|
|
py38
|
|
|
|
[testenv]
|
|
whitelist_externals = poetry
|
|
commands =
|
|
poetry plugin add poetry-version-plugin
|
|
poetry install --no-root --with dev
|
|
|
|
[testenv:lint]
|
|
description = Lint with Ruff
|
|
deps =
|
|
ruff
|
|
commands =
|
|
ruff check
|
|
|