Skip to content

Commit 4070431

Browse files
author
Taniya Mathur
committed
Fix GitLab CI pipeline failure by adding publish.py dependencies
- Add typer, rich, and boto3 to CI environment dependencies - These packages are required for importing publish.py in unit tests - Resolves ImportError that was causing pipeline failures in developer_tests stage
1 parent 0e2f630 commit 4070431

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ developer_tests:
2828
- apt-get update -y
2929
- apt-get install make -y
3030
- pip install ruff
31+
# Install dependencies needed by publish.py for test imports
32+
- pip install typer rich boto3
3133
# Install test dependencies
3234
- cd lib/idp_common_pkg && pip install -e ".[test]" && cd ../..
3335

0 commit comments

Comments
 (0)