Tox fixed the openstack breaking bug use latest

Hurray upstream tox merged a fix for the issue that had us stuck on
1.6.1. They have now released a new version so we can consume that fix.
Start using latest tox again to pull that in.

See https://bitbucket.org/hpk42/tox/issue/150/posargs-configerror
for all the details.

Change-Id: Ia2c7cb07c98c9942113309054b4c40af23596d04
Fixes-bug: 1274135
This commit is contained in:
Clark Boylan 2014-08-19 11:39:24 -07:00
parent 7f293f04f5
commit 334957d1ed
1 changed files with 2 additions and 4 deletions

View File

@ -119,16 +119,14 @@ class jenkins::slave(
}
}
include pip::python3
# Temporarily handle tox separately so we can pin it
package { 'tox':
ensure => '1.6.1',
ensure => 'latest',
provider => pip3,
require => Class['pip::python3'],
}
} else {
# Temporarily handle tox separately so we can pin it
package { 'tox':
ensure => '1.6.1',
ensure => 'latest',
provider => pip,
require => Class['pip'],
}