mirror of
https://git.launchpad.net/beautifulsoup
synced 2025-10-05 16:02:46 +02:00
31 lines
820 B
INI
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
|