~ubuntu-branches/ubuntu/saucy/nova/saucy-proposed

« back to all changes in this revision

Viewing changes to tox.ini

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandleman, Chuck Short
  • Date: 2012-03-02 11:04:04 UTC
  • mfrom: (1.1.47)
  • Revision ID: package-import@ubuntu.com-20120302110404-fr230yakr8hov3dj
Tags: 2012.1~e4-0ubuntu1
[ Adam Gandleman ]
* debian/patches/libvirt-use-console-pipe.patch: Refreshed. 
* debain/nova-volume.upstart.in: Ensure lock directory is created
  (LP: #940780)
* debain/control: Fix nova-compute-$flavor Depends
* debian/control: Add python-iso8601 to python-nova Depends

[ Chuck Short ]
* debian/rules: Fix FTBFS.
* Merge Ubuntu/Debian packaging:
  - Thanks to Julien Danjou, Ghe Rivero, and Thomas Goirand
  - debian/copyright: Update copyright file.
  - debian/nova-api.init, debian/nova-compute.init,
    debian/nova-network.init, debian/nova-objectstore,
    debian/nova-scheduler, debian/nova-volume.init:
    Synchronize init scripts.
  - nova-common.install, debian/rules: Install policy.json
  - debian/rules, debian/nova-xcp-network.install,
    debian/nova-xcp-plugins.install, nova-xcp-plugins.postrm,
    debian/nova-xcp-plugins.doc, debian/nova-xcp-plugins.postinst,
    debian/README.xcp_and_openstack, debian/control,
    debian/ubuntu_xen-openvswitch-nova.rules,
    debian/patches/path-to-the-xenhost.conf-fixup.patch:
    Add Xen XCP support.
  - debian/control,
    debian/nova-compute-{kvm,lxc,qemu,xen,uml}.postinst: Make
    nova-compute a virtual package.
  - Dropped ubuntu_ubuntu_control_vars: We dont use it
* New upstream release.
* Dropped python-babel, it will be handled by langpacks.
* debian/patches/ec2-fixes.patch: Backport turnk fix for ec2
  permissions.
* debian/patches/path-to-the-xenhost.conf-fixup.patch: Refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[tox]
 
2
envlist = py26,py27,pep8
 
3
 
 
4
[testenv]
 
5
deps = -r{toxinidir}/tools/pip-requires
 
6
       -r{toxinidir}/tools/test-requires
 
7
commands = /bin/bash run_tests.sh -N -P
 
8
 
 
9
[testenv:hudson]
 
10
downloadcache = ~/cache/pip
 
11
 
 
12
[testenv:pep8]
 
13
deps = pep8
 
14
commands = /bin/bash run_tests.sh -N --pep8
 
15
 
 
16
[testenv:coverage]
 
17
commands = /bin/bash run_tests.sh -N -P --coverage
 
18
 
 
19
[testenv:venv]
 
20
commands = {posargs}
 
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 = /bin/bash run_tests.sh -N --coverage
 
33
 
 
34
[testenv:jenkinsvenv]
 
35
deps = file://{toxinidir}/.cache.bundle
 
36
commands = {posargs}
 
37