1
1
mirror of https://git.launchpad.net/beautifulsoup synced 2025-10-05 16:02:46 +02:00
Files
beautifulsoup/tox.ini
Leonard Richardson 30cd3b9c6b Fixed a regression where HTMLFormatter and XMLFormatter were not
propagating the indent parameter to the superconstructor. [bug=2097272]
2025-02-03 07:09:27 -05:00

31 lines
820 B
INI

# TODO: we need to test with the three supported character
# encoding autodetection libraries: cchardet, chardet, and charset-normalizer
[tox]
env_list =
py{37, 38, 39, 310, 311, 312, 313},bare,docs
minversion = 3.28.0
skip_missing_interpreters = true
[testenv]
package = wheel
wheel_build_env = .pkg
description = run the tests with all dependencies installed
deps = lxml
html5lib
packaging
soupsieve>=2.6
pytest>=6
typing_extensions>=4.0.0
commands = pytest {tty:--color=yes} {posargs}
[testenv:docs]
basepython = python3
description = build the documentation
deps = sphinx
commands = sphinx-build -b html doc doc/build/html
[testenv:bare]
description = run the tests on the oldest supported version of Python, without any dependencies installed
basepython = python3.7
deps = pytest>=6