File: tox.ini

package info (click to toggle)
python-protego 0.1.16%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 30,204 kB
  • sloc: python: 1,426; perl: 190; cpp: 33; sh: 12; makefile: 3
file content (38 lines) | stat: -rw-r--r-- 608 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tox]
envlist = py27,py37

[testenv]
deps =
    pytest
commands =
    python setup.py install
    pytest {posargs}

[testenv:py35]
basepython = python3.5
deps =
    pytest
commands =
    python setup.py install
    pytest {posargs}

[testenv:py36]
basepython = python3.6
deps = {[testenv:py35]deps}

[testenv:py37]
basepython = python3.7
deps = {[testenv:py35]deps}

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

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