mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Add TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
This commit is contained in:
parent
967ef0d4f6
commit
ccad34f453
2 changed files with 4 additions and 2 deletions
3
.github/workflows/macos.yml
vendored
3
.github/workflows/macos.yml
vendored
|
@ -47,7 +47,8 @@ jobs:
|
|||
if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
|
||||
# test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
|
||||
- name: Tests
|
||||
run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no"
|
||||
# Remove TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest if https://github.com/seattlerb/minitest/pull/798 resolved
|
||||
run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no" TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
|
||||
continue-on-error: true
|
||||
if: matrix.test_task == 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
|
||||
- name: Leaked Globals
|
||||
|
|
3
.github/workflows/ubuntu.yml
vendored
3
.github/workflows/ubuntu.yml
vendored
|
@ -50,7 +50,8 @@ jobs:
|
|||
if: matrix.test_task != 'test-bundled-gems' && !contains(github.event.head_commit.message, '[ci skip]')
|
||||
# test-bundled-gems is separated for marking `continue-on-error` because it randomly fails.
|
||||
- name: Tests (test-bundled-gems)
|
||||
run: make -s ${{ matrix.test_task }}
|
||||
# Remove TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest if https://github.com/seattlerb/minitest/pull/798 resolved
|
||||
run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest
|
||||
env:
|
||||
RUBY_TESTOPTS: "-q --tty=no"
|
||||
continue-on-error: true
|
||||
|
|
Loading…
Reference in a new issue