3
0
Fork 0

feat: basic support for displaying version history

this is not terribly feature-rich yet, just the basics
This commit is contained in:
Lance Edgar 2025-10-29 18:32:35 -05:00
parent 6d2eccd0ea
commit f33448f64a
18 changed files with 1323 additions and 66 deletions

View file

@ -4,10 +4,13 @@ envlist = py38, py39, py310, py311, nox
[testenv]
extras = continuum,tests
commands = pytest {posargs}
commands =
pytest -m 'not versioned' {posargs}
pytest -m 'versioned' {posargs}
[testenv:nox]
extras = tests
commands = pytest -m 'not versioned' {posargs}
[testenv:pylint]
basepython = python3.11
@ -15,7 +18,9 @@ commands = pylint wuttaweb
[testenv:coverage]
basepython = python3.11
commands = pytest --cov=wuttaweb --cov-report=html --cov-fail-under=100
commands =
pytest -m 'not versioned' --cov=wuttaweb
pytest -m 'versioned' --cov-append --cov=wuttaweb --cov-report=html --cov-fail-under=100
[testenv:docs]
basepython = python3.11