add python package inflection

This commit is contained in:
ansgarz 2023-09-09 13:05:39 +02:00
parent 419bdcd5fc
commit 05450fed46
2 changed files with 3 additions and 3 deletions

View file

@ -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)

View file

@ -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)
}
}