File: tox.ini

package info (click to toggle)
python-wadllib 2.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 568 kB
  • sloc: xml: 3,484; python: 833; makefile: 17
file content (19 lines) | stat: -rw-r--r-- 376 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[tox]
envlist =
    py38,py39,py310,py311,py312,py313,docs

[testenv]
commands =
    zope-testrunner --test-path src --tests-pattern ^tests {posargs}
deps =
    zope-testrunner
extras =
    test

[testenv:docs]
basepython =
    python3.11
commands =
    sphinx-build -b html -d src/wadllib/docs/_build/doctrees src/wadllib/docs src/wadllib/docs/_build/html
deps =
    .[docs]