Install pip and then install nosexcover via pip.

This commit is contained in:
Monty Taylor 2011-07-14 14:02:52 -04:00
parent 574fa79898
commit f384b93139
1 changed files with 17 additions and 2 deletions

View File

@ -49,13 +49,28 @@ node default {
ensure => latest
}
package { "python-dev":
ensure => latest
}
package { "python-pip":
ensure => latest
ensure => latest,
require => Package[python-dev]
}
package { "python-coverage":
ensure => latest,
require => Package[python-nose]
}
package { "python-nose":
ensure => latest,
require => Package[python-pip]
}
package { "nosexcover":
ensure => latest,
provider => pip,
require => Package[python-pip]
require => Package[python-coverage]
}
}