forked from GrahamDumpleton/wrapt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
51 lines (43 loc) · 933 Bytes
/
tox.ini
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
39
40
41
42
43
44
45
46
47
48
49
50
51
[tox]
envlist =
py26-without-extensions,
py27-without-extensions,
py33-without-extensions,
pypy-without-extensions,
py26-with-extensions,
py27-with-extensions,
py33-with-extensions
[testenv]
deps =
pytest
pytest-cov
commands =
py.test -v --cov wrapt --cov-report html []
[testenv:py26-without-extensions]
basepython = python2.6
setenv =
WRAPT_EXTENSIONS = false
[testenv:py27-without-extensions]
basepython = python2.7
setenv =
WRAPT_EXTENSIONS = false
[testenv:py33-without-extensions]
basepython = python3.3
setenv =
WRAPT_EXTENSIONS = false
[testenv:pypy-without-extensions]
basepython = pypy
setenv =
WRAPT_EXTENSIONS = false
[testenv:py26-with-extensions]
basepython = python2.6
setenv =
WRAPT_EXTENSIONS = true
[testenv:py27-with-extensions]
basepython = python2.7
setenv =
WRAPT_EXTENSIONS = true
[testenv:py33-with-extensions]
basepython = python3.3
setenv =
WRAPT_EXTENSIONS = true