diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-11 12:10:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-11 12:10:20 +0000 |
commit | af35234f452fde58f2a445b656c7cd334368b301 (patch) | |
tree | b4035453c237a13cfddcc23c1bd1c299df88da22 /tox.ini | |
parent | Releasing debian version 1.11.1-1. (diff) | |
download | litecli-af35234f452fde58f2a445b656c7cd334368b301.tar.xz litecli-af35234f452fde58f2a445b656c7cd334368b301.zip |
Merging upstream version 1.12.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -1,11 +1,14 @@ [tox] -envlist = py37, py38, py39, py310 +envlist = py,style [testenv] -deps = pytest - mock - pexpect - behave - coverage -commands = python setup.py test -passenv = PYTEST_DATABASE +deps = uv +commands = uv pip install -e .[dev] + coverage run -m pytest -v tests + coverage report -m + +[testenv:style] +skip_install = true +deps = ruff +commands = ruff check --fix + ruff format |