python-kasa/tox.ini
Teemu R c431dbb832
Use ruff and ruff format (#534)
Replaces the previously used linting and code formatting tools with ruff.
2023-10-29 23:15:42 +01:00

38 lines
641 B
INI

[tox]
envlist=py37,py38,lint,coverage
skip_missing_interpreters = True
isolated_build = True
[testenv]
whitelist_externals =
poetry
coverage
commands =
poetry install -v
poetry run pytest --cov kasa/tests/
[testenv:clean]
deps = coverage
skip_install = true
commands = coverage erase
[testenv:py37]
commands = coverage run -m pytest {posargs}
[testenv:py38]
commands = coverage run -m pytest {posargs}
[testenv:coverage]
basepython = python3.8
skip_install = true
deps = coverage[toml]
commands =
coverage report
coverage html
[testenv:lint]
deps = pre-commit
skip_install = true
commands = pre-commit run --all-files