File: tox.ini

package info (click to toggle)
python-chameleon 2.16-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,700 kB
  • ctags: 1,471
  • sloc: python: 17,872; xml: 597; makefile: 75
file content (34 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (2)
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
[tox]
envlist = 
    py26,py27,py32,py33,py34,pypy,cover

[testenv]
commands = 
   python setup.py test -q

[testenv:py26]
commands = 
   python setup.py test -q
deps = 
    ordereddict
    unittest2

[testenv:pypy]
commands = 
   python setup.py test -q
deps = 
    ordereddict
    unittest2
    zope.interface

[testenv:cover]
basepython =
    python2.6
commands = 
    python setup.py nosetests --with-xunit --with-xcoverage
deps =
    nose
    coverage==3.4
    nosexcover
    ordereddict
    unittest2