Xqt submitted this change.

View Change


Approvals: Xqt: Verified; Looks good to me, approved
[tests] update continue-on-error settings

Change-Id: I2bbdac73d615776135038036441d4621f1e8e378
---
M .github/workflows/write_tests-ci.yml
M .github/workflows/pywikibot-ci.yml
2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pywikibot-ci.yml b/.github/workflows/pywikibot-ci.yml
index bb71e70..d9f3829 100644
--- a/.github/workflows/pywikibot-ci.yml
+++ b/.github/workflows/pywikibot-ci.yml
@@ -176,5 +176,5 @@
uses: codecov/codecov-action@v3

- name: Check on failure
- if: steps.ci_test.outcome == 'failure'
+ if: steps.ci_test.outcome == 'failure' or steps.ci_test_no_cover.outcome == 'failure'
run: exit 1
diff --git a/.github/workflows/write_tests-ci.yml b/.github/workflows/write_tests-ci.yml
index 34a2f56..b7a2747 100644
--- a/.github/workflows/write_tests-ci.yml
+++ b/.github/workflows/write_tests-ci.yml
@@ -96,5 +96,5 @@
uses: codecov/codecov-action@v3

- name: Check on failure
- if: steps.ci_test.outcome == 'failure'
+ if: steps.ci_test.outcome == 'failure' or steps.ci_test_no_cover.outcome == 'failure'
run: exit 1

To view, visit change 961107. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: I2bbdac73d615776135038036441d4621f1e8e378
Gerrit-Change-Number: 961107
Gerrit-PatchSet: 1
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: Xqt <info@gno.de>
Gerrit-MessageType: merged