From 8e2c5e13a66865211ca701ce65454e8214dc129c Mon Sep 17 00:00:00 2001 From: az Date: Thu, 6 Apr 2023 17:58:19 +0200 Subject: [PATCH] [skip ci] add installation of python packages for pybuilder --- .../provs/desktop/infrastructure/Python.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Python.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Python.kt index 38c0b6c..03b0724 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Python.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/Python.kt @@ -28,8 +28,9 @@ fun Prov.configureVenv(): ProvResult = task { } fun Prov.installPybuilder(): ProvResult = task { - cmd("pip3 install pybuilder ddadevops pypandoc mockito coverage unittest-xml-reporting deprecation python_terraform " + - "boto3") + cmd("pip3 install pybuilder ddadevops pypandoc mockito coverage unittest-xml-reporting deprecation" + + " python_terraform dda_python_terraform boto3 pyyaml ") + cmd("pip3 install --upgrade ddadevops") } fun Prov.installRestClient(): ProvResult = task {