Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ commands =

[testenv:py310-lint]
changedir = {toxinidir}
platform = linux
platform = linux|darwin
commands =
ruff format --check --target-version=py310 --exclude=_vendor setup.py bleach/ tests/ tests_website/
ruff check --target-version=py310 --exclude=_vendor setup.py bleach/ tests/ tests_website/
Expand All @@ -101,15 +101,15 @@ commands =
allowlist_externals = {toxinidir}/scripts/vendor_verify.sh
changedir = {toxinidir}
deps = -rrequirements-dev.txt
platform = linux
platform = linux|darwin
commands =
{toxinidir}/scripts/vendor_verify.sh

[testenv:py310-docs]
changedir = docs
deps = -rrequirements-dev.txt
platform = linux|darwin
extras = css
platform = linux
commands =
sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
sphinx-build -b doctest -d {envtmpdir}/doctrees . {envtmpdir}/doctest
Loading