Xqt submitted this change.

View Change


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

This reverts commit 15425c33eadd32f56c6457f7aaf4985abca556f1.

Reason for revert: wrong „or“ token

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

diff --git a/.github/workflows/pywikibot-ci.yml b/.github/workflows/pywikibot-ci.yml
index d9f3829..bb71e70 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' or steps.ci_test_no_cover.outcome == 'failure'
+ if: steps.ci_test.outcome == 'failure'
run: exit 1
diff --git a/.github/workflows/write_tests-ci.yml b/.github/workflows/write_tests-ci.yml
index b7a2747..34a2f56 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' or steps.ci_test_no_cover.outcome == 'failure'
+ if: steps.ci_test.outcome == 'failure'
run: exit 1

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

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