Install pip and then install nosexcover via pip.
This commit is contained in:
parent
574fa79898
commit
f384b93139
@ -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]
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user