~ubuntu-branches/ubuntu/quantal/python-keystoneclient/quantal-updates

« back to all changes in this revision

Viewing changes to tox.ini

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-04-04 09:05:33 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120404090533-5cbkq3kni95k2uah
Tags: 2012.1~rc2-0ubuntu1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[tox]
 
2
envlist = py26,py27,pep8
 
3
 
 
4
[testenv]
 
5
setenv = VIRTUAL_ENV={envdir}
 
6
deps = -r{toxinidir}/tools/pip-requires
 
7
commands = nosetests {posargs}
 
8
 
 
9
[testenv:pep8]
 
10
deps = pep8
 
11
commands = pep8 --repeat --show-source keystoneclient setup.py
 
12
 
 
13
[testenv:cover]
 
14
commands = nosetests --with-xcoverage {posargs}
 
15
 
 
16
[testenv:venv]
 
17
commands = {posargs}
 
18
 
 
19
[testenv:hudson]
 
20
downloadcache = ~/cache/pip
 
21
 
 
22
[testenv:jenkins26]
 
23
basepython = python2.6
 
24
deps = file://{toxinidir}/.cache.bundle
 
25
 
 
26
[testenv:jenkins27]
 
27
basepython = python2.7
 
28
deps = file://{toxinidir}/.cache.bundle
 
29
 
 
30
[testenv:jenkinscover]
 
31
deps = file://{toxinidir}/.cache.bundle
 
32
commands = nosetests --with-xcoverage {posargs}
 
33
 
 
34
[testenv:jenkinsvenv]
 
35
deps = file://{toxinidir}/.cache.bundle
 
36
commands = {posargs}