File: tox.ini

package info (click to toggle)
python-formencode 2.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,852 kB
  • sloc: python: 6,772; makefile: 130; sh: 96; javascript: 61
file content (26 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[tox]
envlist=py3{7,8,9,10,11,12},pypy3,flake8,docs

[testenv:docs]
basepython = python3.11
deps =
  pycountry
  sphinx
commands =
  sphinx-build -b html -nEW docs docs/_build/html

[testenv:flake8]
basepython = python3.11
deps =
  flake8
commands =
  flake8 src tests

[testenv]
deps=
  pytest
  wheel
  pycountry
  dnspython >= 2
commands=
  pytest tests {posargs}