include missing python dependencies 49/15149/1
authorRavi Pendurty <ravi.pendurty@highstreet-technologies.com>
Tue, 14 Oct 2025 06:34:42 +0000 (12:04 +0530)
committerRavi Pendurty <ravi.pendurty@highstreet-technologies.com>
Tue, 14 Oct 2025 06:34:42 +0000 (12:04 +0530)
create requirements.txt and update workflow

Issue-ID: OAM-521
Change-Id: I3dbfa051aaa160af1bd0a268d30f7025268fd323
Signed-off-by: Ravi Pendurty <ravi.pendurty@highstreet-technologies.com>
.github/workflows/gerrit-verify.yaml
.gitignore
requirements.txt [new file with mode: 0644]

index 40d2091..15bf4cc 100644 (file)
@@ -124,7 +124,9 @@ jobs:
         run: ls -R
 
       - name: Run Tests
-        run: CICD/bin/setup.sh
+        run: |
+          pip install -r requirements.txt
+          bash CICD/bin/setup.sh
 
       - name: Print test log
         if: always()
index abbe4b5..1b84521 100644 (file)
@@ -63,3 +63,4 @@ package-lock.json
 
 #tmp directory
 CICD/tmp
+CICD/log
diff --git a/requirements.txt b/requirements.txt
new file mode 100644 (file)
index 0000000..332e594
--- /dev/null
@@ -0,0 +1,2 @@
+pydantic==v2.12.1
+requests==2.32.5