Xqt has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1222768?usp=email )
Change subject: Tests: Skip script_tests for GraalPy ......................................................................
Tests: Skip script_tests for GraalPy
GraalPy VM emits startup warnings that break exact CLI output assertions.
Bug: T413711 Change-Id: If2e985d6ce31a4d0ec42074b1db2551ba4762158 --- M .github/workflows/graalpy_tests.yml 1 file changed, 3 insertions(+), 1 deletion(-)
Approvals: Xqt: Verified; Looks good to me, approved
diff --git a/.github/workflows/graalpy_tests.yml b/.github/workflows/graalpy_tests.yml index 5ee6423..6041a53 100644 --- a/.github/workflows/graalpy_tests.yml +++ b/.github/workflows/graalpy_tests.yml @@ -18,6 +18,7 @@ build: runs-on: ${{ matrix.os || 'ubuntu-latest' }} continue-on-error: ${{ matrix.experimental || false }} + timeout-minutes: 300 strategy: fail-fast: false matrix: @@ -52,12 +53,13 @@ - name: Test with unittest or pytest id: ci_test continue-on-error: true + timeout-minutes: 290 env: PYTHONIOENCODING: utf-8 PYWIKIBOT_TEST_NO_RC: 1 run: | python pwb.py version - coverage run -m pytest -a "not net" + coverage run -m pytest -a "not net" --ignore=tests/script_tests.py - name: Show coverage statistics run: | coverage combine || true
pywikibot-commits@lists.wikimedia.org