Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): Wait for service termination #96

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/kubernetes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ jobs:
run: |
# Then run integration tests
yaks run test/consumers $YAKS_RUN_OPTIONS
yaks run test/user-report $YAKS_RUN_OPTIONS
yaks run test/user-report/UserReportCrime.feature $YAKS_RUN_OPTIONS
yaks run test/user-report/UserReportHealth.feature $YAKS_RUN_OPTIONS
yaks run test/bridges $YAKS_RUN_OPTIONS
- name: YAKS Report
if: failure()
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ jobs:
run: |
# Then run integration tests
yaks run test/consumers $YAKS_RUN_OPTIONS
yaks run test/user-report $YAKS_RUN_OPTIONS
yaks run test/user-report/UserReportCrime.feature $YAKS_RUN_OPTIONS
yaks run test/user-report/UserReportHealth.feature $YAKS_RUN_OPTIONS
yaks run test/bridges $YAKS_RUN_OPTIONS
- name: YAKS Report
if: failure()
Expand Down Expand Up @@ -205,7 +206,8 @@ jobs:
run: |
# Then run integration tests
yaks run test/consumers $YAKS_RUN_OPTIONS
yaks run test/user-report $YAKS_RUN_OPTIONS
yaks run test/user-report/UserReportCrime.feature $YAKS_RUN_OPTIONS
yaks run test/user-report/UserReportHealth.feature $YAKS_RUN_OPTIONS
yaks run test/bridges $YAKS_RUN_OPTIONS
- name: YAKS Report
if: failure()
Expand Down
3 changes: 3 additions & 0 deletions test/user-report/yaks-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ pre:
run: |
yaks role --add strimzi
post:
- name: Wait for service termination
run: |
kubectl wait --for=delete service/user-report-system --timeout=60s -n ${YAKS_NAMESPACE}
- name: Delete secret
run: |
kubectl delete secret example-event-streaming-user-reporting -n ${YAKS_NAMESPACE}
Expand Down
Loading