Add pytest to python provisioning
This commit is contained in:
parent
38ff640b00
commit
33b38081d2
1 changed files with 5 additions and 0 deletions
|
@ -15,6 +15,7 @@ fun Prov.provisionPython(venvHome: String? = "~/.venv/meissa") = task {
|
|||
installJupyterlab(venvHome)
|
||||
installLinters(venvHome)
|
||||
installAsciinema(venvHome)
|
||||
installPyTest(venvHome)
|
||||
}
|
||||
|
||||
fun Prov.installPython3(): ProvResult = task {
|
||||
|
@ -50,6 +51,10 @@ fun Prov.installAsciinema(venvHome: String? = null): ProvResult = task {
|
|||
pipInstall("asciinema", venvHome)
|
||||
}
|
||||
|
||||
fun Prov.installPyTest(venvHome: String? = null): ProvResult = task {
|
||||
pipInstall("pytest", venvHome)
|
||||
}
|
||||
|
||||
private fun Prov.pipInstall(pkg: String, venvHome: String? = null) {
|
||||
cmd(activateVenvCommandPrefix(venvHome) + "pip3 install $pkg")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue