1
1
mirror of https://git.launchpad.net/beautifulsoup synced 2025-10-06 00:12:49 +02:00
Files
beautifulsoup/tox.ini

31 lines
820 B
INI
Raw Normal View History

# 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
2023-03-30 13:30:03 -04:00
skip_missing_interpreters = true
[testenv]
package = wheel
wheel_build_env = .pkg
2023-03-30 13:30:03 -04:00
description = run the tests with all dependencies installed
deps = lxml
html5lib
packaging
soupsieve>=2.6
pytest>=6
typing_extensions>=4.0.0
2023-03-30 13:30:03 -04:00
commands = pytest {tty:--color=yes} {posargs}
[testenv:docs]
2023-03-30 13:30:03 -04:00
basepython = python3
description = build the documentation
deps = sphinx
2024-03-15 13:49:17 -04:00
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
2023-04-13 08:39:46 -04:00
basepython = python3.7
2023-03-30 13:30:03 -04:00
deps = pytest>=6