Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Chameleon / tox.ini
Size: Mime:
[tox]
envlist = 
    py25,py26,py27,py32,pypy,cover

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

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

[testenv:py27]
commands = 
   python setup.py test -q
deps = 
    distribute

[testenv:py32]
commands = 
   python setup.py test -q
deps = 
    distribute

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

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