File: tox.ini

package info (click to toggle)
mycli 1.42.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 1,036 kB
  • sloc: python: 8,587; makefile: 10
file content (21 lines) | stat: -rw-r--r-- 393 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tox]
envlist = py

[testenv]
skip_install = true
deps = uv
passenv = PYTEST_HOST
    PYTEST_USER
    PYTEST_PASSWORD
    PYTEST_PORT
    PYTEST_CHARSET
commands = uv pip install -e .[dev,ssh,llm]
        coverage run -m pytest -v test
        coverage report -m
        behave test/features

[testenv:style]
skip_install = true
deps = ruff
commands = ruff check
           ruff format --diff