19 lines
334 B
INI
19 lines
334 B
INI
[tox]
|
|
skipsdist = true
|
|
envlist = py38, py39, py310, py311
|
|
|
|
[gh-actions]
|
|
python =
|
|
3.8: py38
|
|
3.9: py39
|
|
3.10: py310
|
|
3.11: py311
|
|
|
|
[testenv]
|
|
passenv = PYTHON_VERSION
|
|
allowlist_externals = poetry
|
|
commands =
|
|
poetry install -v
|
|
pytest --doctest-modules tests --cov --cov-config=pyproject.toml --cov-report=xml
|
|
mypy
|