File: tox.ini

package info (click to toggle)
python-tblib 0.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 224 kB
  • ctags: 55
  • sloc: python: 224; makefile: 35
file content (53 lines) | stat: -rw-r--r-- 773 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tox]
envlist =
    py,
    py2.7,
    py3,
    py3.2,
    py3.3,
    py3.4,
    pypy

[testenv]
setenv =
    PYTHONPATH = {toxinidir}/src:{toxinidir}/tests
    WITH_COVERAGE = x
    PYTHONUNBUFFERED = x
commands = {envpython} {toxinidir}/tests/test_tblib.py
sitepackages = True

[base]
deps =
    coverage
    ;nose
    ;yanc
    ;nose-timelimit

[testenv:py]
basepython = python
deps =
    {[base]deps}
[testenv:py2.7]
basepython = python2.7
deps =
    {[base]deps}
[testenv:py3]
basepython = python3
deps =
    {[base]deps}
[testenv:py3.2]
basepython = python3.2
deps =
    {[base]deps}
[testenv:py3.3]
basepython = python3.3
deps =
    {[base]deps}
[testenv:py3.4]
basepython = python3.4
deps =
    {[base]deps}
[testenv:pypy]
basepython = pypy
deps =
    {[base]deps}