Enhance logging and error handling in E2E tests and CI workflows
- Added detailed log messages in `conftest.py` for SSL certificate and JWT generation steps. - Improved Docker Compose E2E test output with service-specific logs during startup and cleanup. - Adjusted pytest run options in CI workflows to use `--tb=short` for concise error traceback.
This commit is contained in:
parent
4160babc94
commit
904a102b0a
3 changed files with 36 additions and 8 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -61,7 +61,7 @@ jobs:
|
|||
- name: Run Docker Compose E2E tests
|
||||
run: |
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
uv run pytest tests_e2e/test_docker_compose.py -sv
|
||||
uv run pytest tests_e2e/test_docker_compose.py -sv --tb=short
|
||||
|
||||
Tests-E2E-Kubernetes:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -84,7 +84,7 @@ jobs:
|
|||
- name: Run Kubernetes E2E tests
|
||||
run: |
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
uv run pytest tests_e2e/test_kubernetes.py -sv
|
||||
uv run pytest tests_e2e/test_kubernetes.py -sv --tb=short
|
||||
|
||||
Build:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue