From 527490329ce0b4748db7b1c3de7f2f1ca9047db3 Mon Sep 17 00:00:00 2001 From: Jakob Hahn Date: Fri, 5 Apr 2024 11:50:32 +0200 Subject: [PATCH] github/workflows: get integration coverage from secure test Signed-off-by: Jakob Hahn --- .github/workflows/test-integration.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index a98ff1622..4bb415279 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -26,11 +26,7 @@ jobs: for attempt in `seq 25`; do sleep 5; \ if curl -s localhost:9200; \ then echo '=====> ready'; break; fi; if [ $attempt == 25 ]; then exit 1; fi; echo '=====> waiting...'; done - - run: make test-integ race=true coverage=true - - uses: codecov/codecov-action@v3 - with: - file: tmp/integ.cov - flags: integration + - run: make test-integ race=true secured: name: Tests against secure cluster @@ -54,4 +50,8 @@ jobs: for attempt in `seq 25`; do sleep 5; \ if curl -s -ku admin:myStrongPassword123! https://localhost:9200; \ then echo '=====> ready'; break; fi; if [ $attempt == 25 ]; then exit 1; fi; echo '=====> waiting...'; done - - run: make cluster.get-cert test-integ-secure + - run: make cluster.get-cert test-integ-secure race=true coverage=true + - uses: codecov/codecov-action@v3 + with: + file: tmp/integ.cov + flags: integration