File: tox.ini

package info (click to toggle)
supervisor 3.3.1-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,296 kB
  • ctags: 3,705
  • sloc: python: 24,598; makefile: 78; sh: 75
file content (25 lines) | stat: -rw-r--r-- 524 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
# Note: Supervisor supports Python 2.4 but "py24" is not listed in envlist
# because tox has a dependency on distribute, which no longer supports 2.4.

[tox]
envlist =
    cover,py26,py27,pypy

[testenv]
commands =
    python setup.py test -q
deps =
    mock >= 0.5.0
    meld3 >= 0.6.5

[testenv:cover]
basepython =
    python2.6
commands =
    python setup.py nosetests --with-xunit --with-xcoverage --cover-package=supervisor --cover-erase
deps =
    mock >= 0.5.0
    meld3 >= 0.6.5
    nose
    coverage
    nosexcover