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