X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/1f8cf8e0244045ed2b2a8efcff5d6db967ac2b11..eb25cada3f68db8f58689bff431edd321620fd72:/tox.ini diff --git a/tox.ini b/tox.ini index bdce7bd..5797049 100644 --- a/tox.ini +++ b/tox.ini @@ -1,16 +1,16 @@ [tox] envlist = clean, - py{27,35,36,37}, + py{38,39,310,311}, stats [testenv] deps = - nose coverage -passenv = HOME ; Needed to find locally installed fonts when testing PDF production. +passenv = HOME # Needed to find locally installed fonts when testing PDF production. +download = true commands = - nosetests --with-coverage --cover-package=librarian -d --with-doctest --with-xunit --exe + coverage run install_command = pip install --extra-index-url https://py.mdrn.pl/simple {packages} [testenv:clean] @@ -22,7 +22,17 @@ deps = coverage [testenv:stats] basepython = python3 commands = + coverage combine coverage report coverage html deps = coverage +[coverage:run] +parallel = True +source_pkgs = librarian +command_line = -m unittest + +[coverage:paths] +source = src/ + .tox/*/lib/*/site-packages/ +