Xqt has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/961207 )
Change subject: Revert "[tests] update continue-on-error settings" ......................................................................
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(-)
Approvals: Xqt: Verified; Looks good to me, approved
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
pywikibot-commits@lists.wikimedia.org