1
0
Fork 0

Update CI workflow to adjust job dependencies and remove conditional triggers

- Removed `if` conditions for `Tests-E2E-Docker` and `Tests-E2E-Kubernetes` jobs, ensuring they always run.
- Updated `Build` job to depend on both E2E test jobs for stricter validation before building.
This commit is contained in:
Joao Gilberto Magalhaes 2026-02-12 18:13:04 -05:00
parent bec91950c5
commit 4160babc94

View file

@ -61,7 +61,7 @@ jobs:
- name: Run Docker Compose E2E tests - name: Run Docker Compose E2E tests
run: | run: |
export PATH="$HOME/.local/bin:$PATH" export PATH="$HOME/.local/bin:$PATH"
uv run pytest tests_e2e/test_docker_compose.py -v uv run pytest tests_e2e/test_docker_compose.py -sv
Tests-E2E-Kubernetes: Tests-E2E-Kubernetes:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -84,7 +84,7 @@ jobs:
- name: Run Kubernetes E2E tests - name: Run Kubernetes E2E tests
run: | run: |
export PATH="$HOME/.local/bin:$PATH" export PATH="$HOME/.local/bin:$PATH"
uv run pytest tests_e2e/test_kubernetes.py -v uv run pytest tests_e2e/test_kubernetes.py -sv
Build: Build:
runs-on: ubuntu-latest runs-on: ubuntu-latest