Spaces:
Sleeping
Sleeping
File size: 294 Bytes
04785dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
[tox]
skipsdist = true
envlist = py311, py312
[gh-actions]
python =
3.11: py311
3.12: py312
[testenv]
passenv = PYTHON_VERSION
allowlist_externals = poetry
commands =
poetry install -v
pytest --doctest-modules tests --cov --cov-config=pyproject.toml --cov-report=xml
mypy
|