73 lines
1.7 KiB
INI

[tox]
# These are the default environments that will be run
# when ``tox`` is run without arguments.
envlist =
fmt
lint
py311
skip_missing_interpreters = true
requires = tox-uv>=0.4.0
# This is the configuration for the tox-gh-actions plugin for GitHub Actions
# https://github.com/ymyzk/tox-gh-actions
# This section is not needed if not using GitHub Actions for CI.
[gh-actions]
python =
3.11: py311, fmt, lint
# Activate isolated build environment. tox will use a virtual environment
# to build a source distribution from the source tree. For build tools and
# arguments use the pyproject.toml file as specified in PEP-517 and PEP-518.
isolated_build = true
[testenv]
package = uv-editable
deps =
pytest
commands =
uv run pytest tests {posargs}
[testenv:type-check]
skip_install = true
deps =
mypy
commands =
mypy src tests
[testenv:lint]
skip_install = true
deps =
ruff
commands =
ruff check aprsd_weewx_plugin tests
[testenv:docs]
package = uv-editable
deps =
Sphinx
myst-parser
changedir = {toxinidir}/docs
commands =
python -c "import shutil; from pathlib import Path; Path('readme.md').write_text(Path('../README.md').read_text())"
python -c "import shutil; shutil.copy('../ChangeLog', 'changelog.rst')"
{envpython} clean_docs.py
sphinx-apidoc --force --output-dir apidoc {toxinidir}/aprsd_weewx_plugin
sphinx-build -a -W . _build
[testenv:fmt]
skip_install = true
deps =
ruff
commands =
ruff check --fix aprsd_weewx_plugin tests
ruff format aprsd_weewx_plugin tests
[testenv:licenses]
skip_install = true
recreate = true
deps =
-e {toxinidir}
pip-licenses
commands =
pip-licenses {posargs}