forked from strongswan/swidGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
38 lines (34 loc) · 639 Bytes
/
tox.ini
File metadata and controls
38 lines (34 loc) · 639 Bytes
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, py33, py34, py35, py36, pypy, cov
[testenv]
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
py35: python3.5
py36: python3.6
pyp: pypy
deps =
six==1.10.0
pytest==3.1.1
pytest-pep8==1.0.6
mock==2.0
parameterized==0.6.1
commands = py.test \
--basetemp={envtmpdir} \
{posargs} -v -s
[testenv:py26]
deps =
{[testenv]deps}
argparse
unittest2
[testenv:pypy]
basepython = pypy
[testenv:cov]
basepython = python2.7
deps =
{[testenv]deps}
coverage==4.4.1
commands =
coverage run --source swid_generator -m py.test
coverage report