File: tox.ini

package info (click to toggle)
python-protego 0.2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 30,208 kB
  • sloc: python: 1,430; perl: 190; cpp: 33; sh: 12; makefile: 3
file content (22 lines) | stat: -rw-r--r-- 394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tox]
envlist = py27,py37,py38,py39,py310

[testenv]
deps =
    pytest
    pytest-cov
commands =
    python setup.py install
    pytest --cov=protego --cov-report= {posargs:tests}

[testenv:pypy]
basepython = pypy
commands =
    pypy setup.py install
    pypy -m pytest {posargs:tests}

[testenv:pypy3]
basepython = pypy3
commands =
    pypy setup.py install
    pypy -m pytest {posargs:tests}