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
|
ensure => latest
|
||||||
}
|
}
|
||||||
|
|
||||||
|
package { "python-dev":
|
||||||
|
ensure => latest
|
||||||
|
}
|
||||||
|
|
||||||
package { "python-pip":
|
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":
|
package { "nosexcover":
|
||||||
ensure => latest,
|
ensure => latest,
|
||||||
provider => pip,
|
provider => pip,
|
||||||
require => Package[python-pip]
|
require => Package[python-coverage]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user