add python package inflection
This commit is contained in:
parent
419bdcd5fc
commit
05450fed46
2 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@ fun Prov.configureVenv(venvHome: String): ProvResult = task {
|
|||
|
||||
fun Prov.installPybuilder(venvHome: String? = null): ProvResult = task {
|
||||
pipInstall("pybuilder ddadevops pypandoc mockito coverage unittest-xml-reporting deprecation" +
|
||||
" python_terraform dda_python_terraform boto3 pyyaml packaging",
|
||||
" python_terraform dda_python_terraform boto3 pyyaml packaging inflection",
|
||||
venvHome
|
||||
)
|
||||
pipInstall("--upgrade ddadevops", venvHome)
|
||||
|
|
|
@ -9,9 +9,9 @@ internal class PythonKtTest {
|
|||
@ExtensiveContainerTest
|
||||
fun test_provisionPython() {
|
||||
// when
|
||||
val res = defaultTestContainer().provisionPython()
|
||||
val result = defaultTestContainer().provisionPython()
|
||||
|
||||
// then
|
||||
assertTrue(res.success)
|
||||
assertTrue(result.success)
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue